]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - atc/list.c
This patch makes atc(6) check for memory allocation failure.
[bsdgames-darwin.git] / atc / list.c
index 8827badefa7245114520dd26a551610293cd8486..a8bfed0217a4475fd863bc5d4d507c8d6ccbef52 100644 (file)
@@ -1,6 +1,8 @@
+/*     $NetBSD: list.c,v 1.4 1997/10/10 02:07:23 lukem Exp $   */
+
 /*-
- * Copyright (c) 1990 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1990, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * This code is derived from software contributed to Berkeley by
  * Ed James.
  * For more info on this and all of my stuff, mail edjames@berkeley.edu.
  */
 
+#include <sys/cdefs.h>
 #ifndef lint
-/*static char sccsid[] = "from: @(#)list.c     5.2 (Berkeley) 4/30/90";*/
-static char rcsid[] = "$Id: list.c,v 1.2 1993/08/01 18:57:05 mycroft Exp $";
+#if 0
+static char sccsid[] = "@(#)list.c     8.1 (Berkeley) 5/31/93";
+#else
+__RCSID("$NetBSD: list.c,v 1.4 1997/10/10 02:07:23 lukem Exp $");
+#endif
 #endif /* not lint */
 
 #include "include.h"
@@ -56,6 +62,7 @@ newplane()
        return ((PLANE *) calloc(1, sizeof (PLANE)));
 }
 
+void
 append(l, p)
        LIST    *l;
        PLANE   *p;
@@ -94,6 +101,7 @@ append(l, p)
        }
 }
 
+void
 delete(l, p)
        LIST    *l;
        PLANE   *p;