diff options
Diffstat (limited to 'test/misc')
-rw-r--r-- | test/misc/bug-glob2.c | 4 | ||||
-rw-r--r-- | test/misc/stdarg.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/test/misc/bug-glob2.c b/test/misc/bug-glob2.c index 424ff4f48..9e8be983b 100644 --- a/test/misc/bug-glob2.c +++ b/test/misc/bug-glob2.c @@ -264,7 +264,7 @@ init_glob_altdirfuncs (glob_t *pglob) } -int +static int do_test (void) { glob_t gl; @@ -295,7 +295,7 @@ do_test (void) return 0; } #else -int do_test (void) { return 0; } +static int do_test (void) { return 0; } #endif #define TEST_FUNCTION do_test () diff --git a/test/misc/stdarg.c b/test/misc/stdarg.c index 561fd2c3b..1566e0ce8 100644 --- a/test/misc/stdarg.c +++ b/test/misc/stdarg.c @@ -5,7 +5,7 @@ #include <string.h> #include <sys/types.h> #include <stdarg.h> -int foo(const char *format, ...) +static int foo(const char *format, ...) { va_list ap; size_t len; |