diff options
author | harti <harti@FreeBSD.org> | 2005-04-05 07:43:02 +0000 |
---|---|---|
committer | harti <harti@FreeBSD.org> | 2005-04-05 07:43:02 +0000 |
commit | 7786d65f29b191db4d81f5229deab7604eb6a9d8 (patch) | |
tree | cf03047949264ac28bde24d5e854c767367652d5 /usr.bin/make | |
parent | a868b14c9b808336c568b78b7493a08535bc73eb (diff) | |
download | FreeBSD-src-7786d65f29b191db4d81f5229deab7604eb6a9d8.zip FreeBSD-src-7786d65f29b191db4d81f5229deab7604eb6a9d8.tar.gz |
Remove unneccessary local prototypes.
Diffstat (limited to 'usr.bin/make')
-rw-r--r-- | usr.bin/make/job.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/usr.bin/make/job.c b/usr.bin/make/job.c index 75f3e74..8e89447 100644 --- a/usr.bin/make/job.c +++ b/usr.bin/make/job.c @@ -451,15 +451,8 @@ static sig_atomic_t interrupted; #define W_SETTERMSIG(st, val) W_SETMASKED(st, val, WTERMSIG) #define W_SETEXITSTATUS(st, val) W_SETMASKED(st, val, WEXITSTATUS) -static void JobPassSig(int); -static int JobPrintCommand(void *, void *); -static void JobClose(Job *); -static void JobFinish(Job *, int *); -static void JobExec(Job *, char **); -static void JobMakeArgv(Job *, char **); static void JobRestart(Job *); static int JobStart(GNode *, int, Job *); -static char *JobOutput(Job *, char *, char *, int); static void JobDoOutput(Job *, Boolean); static struct Shell *JobMatchShell(const char *); static void JobInterrupt(int, int); |