aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/make/sprite.h
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1995-01-23 21:03:17 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1995-01-23 21:03:17 +0000
commit9f574f9a908a903efc4a514a61bde333d960573c (patch)
tree4fe60a8bd60f90f8461d826b8a6c0cd471c798d3 /usr.bin/make/sprite.h
parent8d81c1222778f5f4e7f1640dda9ac9c1fe47fcdd (diff)
Notes
Diffstat (limited to 'usr.bin/make/sprite.h')
-rw-r--r--usr.bin/make/sprite.h11
1 files changed, 4 insertions, 7 deletions
diff --git a/usr.bin/make/sprite.h b/usr.bin/make/sprite.h
index 797e4533f3c4..ba8be954f7cc 100644
--- a/usr.bin/make/sprite.h
+++ b/usr.bin/make/sprite.h
@@ -86,7 +86,7 @@ typedef int ReturnStatus;
* by user processes.
*/
-#define NIL (~0)
+#define NIL ~0
#define USER_NIL 0
#ifndef NULL
#define NULL 0
@@ -103,12 +103,9 @@ typedef char *Address;
* ClientData is an uninterpreted word. It is defined as an int so that
* kdbx will not interpret client data as a string. Unlike an "Address",
* client data will generally not be used in arithmetic.
+ * But we don't have kdbx anymore so we define it as void (christos)
*/
-typedef int *ClientData;
+typedef void *ClientData;
-#ifdef notdef
-#include "status.h"
-#endif
-
-#endif _SPRITE
+#endif /* _SPRITE */