diff options
author | charnier <charnier@FreeBSD.org> | 2012-01-25 08:42:19 +0000 |
---|---|---|
committer | charnier <charnier@FreeBSD.org> | 2012-01-25 08:42:19 +0000 |
commit | 11c560ec5e9b4b4c1e625e3f949adc3e5f025826 (patch) | |
tree | 87e53751614cd8153750969022f9e8aa01d069bc /bin/sh/jobs.c | |
parent | 213e9c871367df9e4445a15b23c0d8943da17a77 (diff) | |
download | FreeBSD-src-11c560ec5e9b4b4c1e625e3f949adc3e5f025826.zip FreeBSD-src-11c560ec5e9b4b4c1e625e3f949adc3e5f025826.tar.gz |
Add prototypes, ANSIfy functions definitions to reduce WARNS=6 output.
Diffstat (limited to 'bin/sh/jobs.c')
-rw-r--r-- | bin/sh/jobs.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/sh/jobs.c b/bin/sh/jobs.c index 75b503e..232be8b 100644 --- a/bin/sh/jobs.c +++ b/bin/sh/jobs.c @@ -92,6 +92,7 @@ static void restartjob(struct job *); #endif static void freejob(struct job *); static struct job *getjob(char *); +pid_t getjobpgrp(char *); static pid_t dowait(int, struct job *); static pid_t waitproc(int, int *); static void checkzombies(void); |