Subject: | C code unnecessarily requires a C99 compiler |
In the parse_int function in picohttpparser/picohttpparser.c, the line 'int v = 0' comes after code instead of at the beginning of the function, thus requring a C99-compliant compiler. Moving the line to before CHECK_EOF() makes it compile on older compilers.