Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/usr.bin/make make cleaner C for more picky compilers
details: https://anonhg.NetBSD.org/src/rev/f36b43b87395
branches: trunk
changeset: 485750:f36b43b87395
user: drochner <drochner%NetBSD.org@localhost>
date: Thu May 04 18:27:53 2000 +0000
description:
make cleaner C for more picky compilers
diffstat:
usr.bin/make/make.h | 4 ++--
usr.bin/make/sprite.h | 8 ++++----
2 files changed, 6 insertions(+), 6 deletions(-)
diffs (49 lines):
diff -r b1cafa10fa15 -r f36b43b87395 usr.bin/make/make.h
--- a/usr.bin/make/make.h Thu May 04 17:34:28 2000 +0000
+++ b/usr.bin/make/make.h Thu May 04 18:27:53 2000 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: make.h,v 1.24 2000/04/20 11:23:26 sjg Exp $ */
+/* $NetBSD: make.h,v 1.25 2000/05/04 18:27:53 drochner Exp $ */
/*
* Copyright (c) 1988, 1989, 1990, 1993
@@ -130,7 +130,7 @@
#define FORCE 0x4 /* children don't exist, and we pretend made */
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 -r b1cafa10fa15 -r f36b43b87395 usr.bin/make/sprite.h
--- a/usr.bin/make/sprite.h Thu May 04 17:34:28 2000 +0000
+++ b/usr.bin/make/sprite.h Thu May 04 18:27:53 2000 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: sprite.h,v 1.6 1996/11/06 17:59:22 christos Exp $ */
+/* $NetBSD: sprite.h,v 1.7 2000/05/04 18:27:53 drochner Exp $ */
/*
* Copyright (c) 1988, 1989, 1990, 1993
@@ -58,10 +58,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
@@ -92,7 +92,7 @@
#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
Home |
Main Index |
Thread Index |
Old Index