X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;ds=sidebyside;f=lexer.c;h=b90edcdfe7ce02d6da9653c51d36bf3bb7602bd2;hb=2619de52f8cf96064db721583c2e21c062acf230;hp=f7d97af56daedf486a85c756301fc136f32cb60d;hpb=9f6aeae9014b1aee7fac9c93046bb033f79381e7;p=cparser diff --git a/lexer.c b/lexer.c index f7d97af..b90edcd 100644 --- a/lexer.c +++ b/lexer.c @@ -634,7 +634,8 @@ static void parse_floating_suffix(void) * A replacement for strtoull. Only those parts needed for * our parser are implemented. */ -static unsigned long long parse_int_string(const char *s, const char **endptr, int base) { +static unsigned long long parse_int_string(const char *s, const char **endptr, int base) +{ unsigned long long v = 0; switch (base) { @@ -1579,7 +1580,8 @@ typedef enum stdc_pragma_value_kind_t { /** * Parse a pragma directive. */ -static void parse_pragma(void) { +static void parse_pragma(void) +{ bool unknown_pragma = true; next_pp_token();