diff options
Diffstat (limited to 'stdlib')
-rw-r--r-- | stdlib/test-canon.c | 2 | ||||
-rw-r--r-- | stdlib/testsort.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/test-canon.c b/stdlib/test-canon.c index 2ece136435..596de7d488 100644 --- a/stdlib/test-canon.c +++ b/stdlib/test-canon.c @@ -93,7 +93,7 @@ struct { }; -int +static int check_path (const char * result, const char * expected) { int good; diff --git a/stdlib/testsort.c b/stdlib/testsort.c index a9a43c76ea..aa4332a568 100644 --- a/stdlib/testsort.c +++ b/stdlib/testsort.c @@ -2,7 +2,7 @@ #include <string.h> #include <stdio.h> -int +static int compare (const void *a, const void *b) { return strcmp (*(char **) a, *(char **) b); |