diff options
author | harti <harti@FreeBSD.org> | 2005-05-10 13:45:29 +0000 |
---|---|---|
committer | harti <harti@FreeBSD.org> | 2005-05-10 13:45:29 +0000 |
commit | 9f5daa0be5581c391ed4a6a190cdd564f13cfbc8 (patch) | |
tree | d5b66451c7c2bdfc8d2e5ca349affe04f08015f8 /usr.bin/make/job.h | |
parent | 7db34cfe43e40b9b1c8d46893c8b257f128b570b (diff) | |
download | FreeBSD-src-9f5daa0be5581c391ed4a6a190cdd564f13cfbc8.zip FreeBSD-src-9f5daa0be5581c391ed4a6a190cdd564f13cfbc8.tar.gz |
Merge compat.c into job.c. There is a lot in common between these
files and we are going to factor this out.
Patch: 7.199 (slightly changed)
Submitted by: Max Okumoto <okumoto@ucsd.edu>
Diffstat (limited to 'usr.bin/make/job.h')
-rw-r--r-- | usr.bin/make/job.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/usr.bin/make/job.h b/usr.bin/make/job.h index bf56f11..91e03f8 100644 --- a/usr.bin/make/job.h +++ b/usr.bin/make/job.h @@ -52,8 +52,9 @@ #include "sprite.h" -struct GNode; struct Buffer; +struct GNode; +struct Lst; #define TMPPAT "/tmp/makeXXXXXXXXXX" @@ -87,4 +88,7 @@ void Job_AbortAll(void); struct Buffer *Cmd_Exec(const char *, const char **); +void Compat_Run(struct Lst *); +int Compat_RunCommand(char *, struct GNode *); + #endif /* job_h_4678dfd1 */ |