aboutsummaryrefslogtreecommitdiff
path: root/miscutils/bc.c
diff options
context:
space:
mode:
Diffstat (limited to 'miscutils/bc.c')
-rw-r--r--miscutils/bc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/bc.c b/miscutils/bc.c
index 4d987325e..f339b895c 100644
--- a/miscutils/bc.c
+++ b/miscutils/bc.c
@@ -517,7 +517,7 @@ struct BcLexKeyword {
517}; 517};
518#define LEX_KW_ENTRY(a, b) \ 518#define LEX_KW_ENTRY(a, b) \
519 { .name8 = a /*, .posix = b */ } 519 { .name8 = a /*, .posix = b */ }
520static const struct BcLexKeyword bc_lex_kws[20] = { 520static const struct BcLexKeyword bc_lex_kws[20] ALIGN8 = {
521 LEX_KW_ENTRY("auto" , 1), // 0 521 LEX_KW_ENTRY("auto" , 1), // 0
522 LEX_KW_ENTRY("break" , 1), // 1 522 LEX_KW_ENTRY("break" , 1), // 1
523 LEX_KW_ENTRY("continue", 0), // 2 note: this one has no terminating NUL 523 LEX_KW_ENTRY("continue", 0), // 2 note: this one has no terminating NUL