diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1998-02-22 19:57:37 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1998-02-22 19:57:37 +0000 |
commit | 917a1dcdfbfc25be146d6b9bfb0b98ec6644609f (patch) | |
tree | 55243a0382e9c04883194083ef6a308eeed27a3b /usr.bin/make | |
parent | 3b09485a0f88ece4a0b21678704a64e1327fc344 (diff) |
some ansi
Diffstat (limited to 'usr.bin/make')
-rw-r--r-- | usr.bin/make/lst.lib/lstInt.h | 4 | ||||
-rw-r--r-- | usr.bin/make/make.h | 4 | ||||
-rw-r--r-- | usr.bin/make/sprite.h | 8 |
3 files changed, 8 insertions, 8 deletions
diff --git a/usr.bin/make/lst.lib/lstInt.h b/usr.bin/make/lst.lib/lstInt.h index aa4cba2c419..aa1c424d466 100644 --- a/usr.bin/make/lst.lib/lstInt.h +++ b/usr.bin/make/lst.lib/lstInt.h @@ -1,4 +1,4 @@ -/* $OpenBSD: lstInt.h,v 1.4 1996/11/30 21:09:18 millert Exp $ */ +/* $OpenBSD: lstInt.h,v 1.5 1998/02/22 19:57:36 mickey Exp $ */ /* $NetBSD: lstInt.h,v 1.7 1996/11/06 17:59:44 christos Exp $ */ /* @@ -111,4 +111,4 @@ typedef struct { */ #define LstIsEmpty(l) (((List)l)->firstPtr == NilListNode) -#endif _LSTINT_H_ +#endif /* _LSTINT_H_ */ diff --git a/usr.bin/make/make.h b/usr.bin/make/make.h index bd31d44a502..d9865c8eee5 100644 --- a/usr.bin/make/make.h +++ b/usr.bin/make/make.h @@ -1,4 +1,4 @@ -/* $OpenBSD: make.h,v 1.10 1997/07/25 21:05:34 mickey Exp $ */ +/* $OpenBSD: make.h,v 1.11 1998/02/22 19:57:33 mickey Exp $ */ /* $NetBSD: make.h,v 1.15 1997/03/10 21:20:00 christos Exp $ */ /* @@ -119,7 +119,7 @@ typedef struct GNode { Boolean make; /* TRUE if this target needs to be remade */ enum { UNMADE, BEINGMADE, MADE, UPTODATE, ERROR, ABORTED, - CYCLE, ENDCYCLE, + CYCLE, ENDCYCLE } made; /* Set to reflect the state of processing * on this node: * UNMADE - Not examined yet diff --git a/usr.bin/make/sprite.h b/usr.bin/make/sprite.h index bcd620ed594..b0ca5f8db15 100644 --- a/usr.bin/make/sprite.h +++ b/usr.bin/make/sprite.h @@ -1,4 +1,4 @@ -/* $OpenBSD: sprite.h,v 1.3 1996/11/30 21:09:03 millert Exp $ */ +/* $OpenBSD: sprite.h,v 1.4 1998/02/22 19:57:34 mickey Exp $ */ /* $NetBSD: sprite.h,v 1.6 1996/11/06 17:59:22 christos Exp $ */ /* @@ -59,10 +59,10 @@ typedef int Boolean; #ifndef TRUE #define TRUE 1 -#endif TRUE +#endif /* TRUE */ #ifndef FALSE #define FALSE 0 -#endif FALSE +#endif /* FALSE */ /* * Functions that must return a status can return a ReturnStatus to @@ -93,7 +93,7 @@ typedef int ReturnStatus; #define USER_NIL 0 #ifndef NULL #define NULL 0 -#endif NULL +#endif /* NULL */ /* * An address is just a pointer in C. It is defined as a character pointer |