summaryrefslogtreecommitdiffstats
path: root/atc/list.c
diff options
context:
space:
mode:
authorlukem <lukem@NetBSD.org>1997-10-10 02:07:01 +0000
committerlukem <lukem@NetBSD.org>1997-10-10 02:07:01 +0000
commit872a50db510aae37e624f1b82db06f08023c5712 (patch)
treee5af9998b7c1daa1acf8046cd6ea941cbf25345b /atc/list.c
parent3c0c7a72c2f0803e801f2330c329aff2eee680d5 (diff)
downloadbsdgames-darwin-872a50db510aae37e624f1b82db06f08023c5712.tar.gz
bsdgames-darwin-872a50db510aae37e624f1b82db06f08023c5712.tar.zst
bsdgames-darwin-872a50db510aae37e624f1b82db06f08023c5712.zip
WARNSify
Diffstat (limited to 'atc/list.c')
-rw-r--r--atc/list.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/atc/list.c b/atc/list.c
index 62132cb9..a8bfed02 100644
--- a/atc/list.c
+++ b/atc/list.c
@@ -1,4 +1,4 @@
-/* $NetBSD: list.c,v 1.3 1995/03/21 15:04:18 cgd Exp $ */
+/* $NetBSD: list.c,v 1.4 1997/10/10 02:07:23 lukem Exp $ */
/*-
* Copyright (c) 1990, 1993
@@ -45,11 +45,12 @@
* For more info on this and all of my stuff, mail edjames@berkeley.edu.
*/
+#include <sys/cdefs.h>
#ifndef lint
#if 0
static char sccsid[] = "@(#)list.c 8.1 (Berkeley) 5/31/93";
#else
-static char rcsid[] = "$NetBSD: list.c,v 1.3 1995/03/21 15:04:18 cgd Exp $";
+__RCSID("$NetBSD: list.c,v 1.4 1997/10/10 02:07:23 lukem Exp $");
#endif
#endif /* not lint */
@@ -61,6 +62,7 @@ newplane()
return ((PLANE *) calloc(1, sizeof (PLANE)));
}
+void
append(l, p)
LIST *l;
PLANE *p;
@@ -99,6 +101,7 @@ append(l, p)
}
}
+void
delete(l, p)
LIST *l;
PLANE *p;