diff options
Diffstat (limited to 'stdlib/tst-strtol.c')
-rw-r--r-- | stdlib/tst-strtol.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/stdlib/tst-strtol.c b/stdlib/tst-strtol.c index c072891ddb..2d5d960986 100644 --- a/stdlib/tst-strtol.c +++ b/stdlib/tst-strtol.c @@ -92,10 +92,11 @@ static const struct ltest tests[] = {NULL, 0, 0, 0, 0}, }; -static void expand __P ((char *dst, int c)); +/* Prototypes for local functions. */ +static void expand (char *dst, int c); int -main (int argc, char ** argv) +main (void) { register const struct ltest *lt; char *ep; |