diff options
| author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1995-01-23 21:03:17 +0000 |
|---|---|---|
| committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1995-01-23 21:03:17 +0000 |
| commit | 9f574f9a908a903efc4a514a61bde333d960573c (patch) | |
| tree | 4fe60a8bd60f90f8461d826b8a6c0cd471c798d3 /usr.bin/make/make.h | |
| parent | 8d81c1222778f5f4e7f1640dda9ac9c1fe47fcdd (diff) | |
Notes
Diffstat (limited to 'usr.bin/make/make.h')
| -rw-r--r-- | usr.bin/make/make.h | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/usr.bin/make/make.h b/usr.bin/make/make.h index 506d98a84222..7873ec1ebf8d 100644 --- a/usr.bin/make/make.h +++ b/usr.bin/make/make.h @@ -50,7 +50,15 @@ #include <stdio.h> #include <string.h> #include <ctype.h> +#ifndef MAKE_BOOTSTRAP #include <sys/cdefs.h> +#else +#if defined(__STDC__) || defined(__cplusplus) +#define __P(protos) protos /* full-blown ANSI C */ +#else +#define __P(protos) () /* traditional C preprocessor */ +#endif +#endif #if __STDC__ #include <stdlib.h> #include <unistd.h> @@ -347,11 +355,11 @@ extern int debug; */ #include "nonints.h" -void Make_DoAllVar __P((GNode *)); -int Make_HandleUse __P((GNode *, GNode *)); -Boolean Make_OODate __P((GNode *)); -Boolean Make_Run __P((Lst)); -int Make_TimeStamp __P((GNode *, GNode *)); -void Make_Update __P((GNode *)); +int Make_TimeStamp __P((GNode *, GNode *)); +Boolean Make_OODate __P((GNode *)); +int Make_HandleUse __P((GNode *, GNode *)); +void Make_Update __P((GNode *)); +void Make_DoAllVar __P((GNode *)); +Boolean Make_Run __P((Lst)); #endif /* _MAKE_H_ */ |
