diff options
author | Mike Frysinger <vapier@gentoo.org> | 2007-01-29 02:56:45 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2007-01-29 02:56:45 +0000 |
commit | 92a56f367e6635bebf4e519a49943c15d2981d85 (patch) | |
tree | 8d0cc34ab7791579c5e7979bc09b5ede8b1bc7be /test/unistd/fork.c | |
parent | 55aaeb574609ff7fb7ac93ce4ffe01be0a56f5b7 (diff) |
fixup prototype warnings
Diffstat (limited to 'test/unistd/fork.c')
-rw-r--r-- | test/unistd/fork.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unistd/fork.c b/test/unistd/fork.c index b163c0ef9..6d132d6d8 100644 --- a/test/unistd/fork.c +++ b/test/unistd/fork.c @@ -18,7 +18,7 @@ #ifdef __ARCH_USE_MMU__ -void child_handler(int sig) +static void child_handler(int sig) { fprintf(stderr, "I got a SIGCHLD\n"); } |