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/errno.c | |
parent | 55aaeb574609ff7fb7ac93ce4ffe01be0a56f5b7 (diff) |
fixup prototype warnings
Diffstat (limited to 'test/unistd/errno.c')
-rw-r--r-- | test/unistd/errno.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unistd/errno.c b/test/unistd/errno.c index c77f58aa2..b9e0f5216 100644 --- a/test/unistd/errno.c +++ b/test/unistd/errno.c @@ -6,7 +6,7 @@ #include <sched.h> #include "clone_cruft.h" -int child_fn(void *arg) +static int child_fn(void *arg) { fprintf(stderr, "in child_fn\n"); exit(1); |