diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2001-05-29 12:53:49 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2001-05-29 12:53:49 +0000 |
commit | 14959b87a7868b8591017204f0844a5d4bb29a42 (patch) | |
tree | f685e41abdfa80732cf331c96a58b6b56ef70970 /usr.bin/make/lst.lib/lstAddNew.c | |
parent | b6985ed543fc10d606789bf3477ec48cc4a3bf2d (diff) |
Take includes out of lst.h, re-add what's needed to separate files.
Removes remaining lint stuff from lst.lib.
Diffstat (limited to 'usr.bin/make/lst.lib/lstAddNew.c')
-rw-r--r-- | usr.bin/make/lst.lib/lstAddNew.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/usr.bin/make/lst.lib/lstAddNew.c b/usr.bin/make/lst.lib/lstAddNew.c index 53334b775f3..ffa585f579a 100644 --- a/usr.bin/make/lst.lib/lstAddNew.c +++ b/usr.bin/make/lst.lib/lstAddNew.c @@ -1,5 +1,5 @@ /* $OpenPackages$ */ -/* $OpenBSD: lstAddNew.c,v 1.2 2001/05/23 12:34:53 espie Exp $ */ +/* $OpenBSD: lstAddNew.c,v 1.3 2001/05/29 12:53:44 espie Exp $ */ /* ex:ts=8 sw=4: */ @@ -31,11 +31,7 @@ */ #include "lstInt.h" - -#ifndef lint -UNUSED -static char rcsid[] = "$OpenBSD: lstAddNew.c,v 1.2 2001/05/23 12:34:53 espie Exp $"; -#endif /* not lint */ +#include <stddef.h> /* Add datum to the end of a list only if it wasn't there already. * Returns false if datum was already there. |