summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorMarc Espie <espie@cvs.openbsd.org>1999-11-11 11:33:03 +0000
committerMarc Espie <espie@cvs.openbsd.org>1999-11-11 11:33:03 +0000
commit0c4c42a4181f159602f546a970a388daedba6228 (patch)
treef8a68dedf69191db45192625e03f91aae5092f0a /usr.bin
parent55bc80293b862fae893b2be64b63c46f097a721d (diff)
Move all prototypes to nonints.h. Comment no longer reflects reality.
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/make/extern.h10
-rw-r--r--usr.bin/make/make.h13
-rw-r--r--usr.bin/make/nonints.h10
3 files changed, 19 insertions, 14 deletions
diff --git a/usr.bin/make/extern.h b/usr.bin/make/extern.h
index 5b3b2833145..f184ce5515d 100644
--- a/usr.bin/make/extern.h
+++ b/usr.bin/make/extern.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: extern.h,v 1.7 1998/12/05 00:06:28 espie Exp $ */
+/* $OpenBSD: extern.h,v 1.8 1999/11/11 11:33:02 espie Exp $ */
/* $NetBSD: nonints.h,v 1.12 1996/11/06 17:59:19 christos Exp $ */
/*-
@@ -83,6 +83,14 @@ void *erealloc __P((void *, size_t));
void enomem __P((void));
int eunlink __P((const char *));
+/* make.c */
+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));
+
/* parse.c */
void Parse_Error __P((int, char *, ...));
Boolean Parse_AnyExport __P((void));
diff --git a/usr.bin/make/make.h b/usr.bin/make/make.h
index 0be1c93abc1..ffc98fa61ac 100644
--- a/usr.bin/make/make.h
+++ b/usr.bin/make/make.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: make.h,v 1.13 1998/12/05 00:06:28 espie Exp $ */
+/* $OpenBSD: make.h,v 1.14 1999/11/11 11:33:02 espie Exp $ */
/* $NetBSD: make.h,v 1.15 1997/03/10 21:20:00 christos Exp $ */
/*
@@ -374,17 +374,6 @@ extern int debug;
#define DEBUG(module) (debug & CONCAT(DEBUG_,module))
-/*
- * Since there are so many, all functions that return non-integer values are
- * extracted by means of a sed script or two and stuck in the file "nonints.h"
- */
#include "nonints.h"
-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_ */
diff --git a/usr.bin/make/nonints.h b/usr.bin/make/nonints.h
index d3eda26293c..35d42dea9f0 100644
--- a/usr.bin/make/nonints.h
+++ b/usr.bin/make/nonints.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: nonints.h,v 1.7 1998/12/05 00:06:28 espie Exp $ */
+/* $OpenBSD: nonints.h,v 1.8 1999/11/11 11:33:02 espie Exp $ */
/* $NetBSD: nonints.h,v 1.12 1996/11/06 17:59:19 christos Exp $ */
/*-
@@ -83,6 +83,14 @@ void *erealloc __P((void *, size_t));
void enomem __P((void));
int eunlink __P((const char *));
+/* make.c */
+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));
+
/* parse.c */
void Parse_Error __P((int, char *, ...));
Boolean Parse_AnyExport __P((void));