diff options
author | Marc Espie <espie@cvs.openbsd.org> | 1999-12-18 21:53:35 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 1999-12-18 21:53:35 +0000 |
commit | 55cf72374a6a0695c5f50929233d06baccf648f7 (patch) | |
tree | ed27b73215fc2d04eb4940923b41124839f62167 /usr.bin/make/hash.c | |
parent | e4bc6799b57e2d16e3a510719ddd8e746dda9879 (diff) |
NIL, NILGNODE, etc, are only glorified NULL.
Get rid of them.
Get rid of list.h, nothing uses it anyway.
Diffstat (limited to 'usr.bin/make/hash.c')
-rw-r--r-- | usr.bin/make/hash.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/make/hash.c b/usr.bin/make/hash.c index be030e5984b..6e07ac1ab85 100644 --- a/usr.bin/make/hash.c +++ b/usr.bin/make/hash.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hash.c,v 1.4 1998/12/05 00:06:27 espie Exp $ */ +/* $OpenBSD: hash.c,v 1.5 1999/12/18 21:53:32 espie Exp $ */ /* $NetBSD: hash.c,v 1.6 1996/11/06 17:59:06 christos Exp $ */ /* @@ -43,7 +43,7 @@ #if 0 static char sccsid[] = "@(#)hash.c 8.1 (Berkeley) 6/6/93"; #else -static char rcsid[] = "$OpenBSD: hash.c,v 1.4 1998/12/05 00:06:27 espie Exp $"; +static char rcsid[] = "$OpenBSD: hash.c,v 1.5 1999/12/18 21:53:32 espie Exp $"; #endif #endif /* not lint */ @@ -360,7 +360,7 @@ Hash_EnumNext(searchPtr) /* * The hashEntryPtr field points to the most recently returned - * entry, or is nil if we are starting up. If not nil, we have + * entry, or is null if we are starting up. If not null, we have * to start at the next one in the chain. */ e = searchPtr->hashEntryPtr; |