]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - atc/list.c
- remove duplicate comment
[bsdgames-darwin.git] / atc / list.c
index e1b50b13adf0144b19d11c17da7a1c50214364ec..af43b485462443f06d9905be72c45e41c5cf2810 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: list.c,v 1.6 2003/08/07 09:36:54 agc Exp $     */
+/*     $NetBSD: list.c,v 1.9 2015/06/19 06:02:31 dholland Exp $        */
 
 /*-
  * Copyright (c) 1990, 1993
 #if 0
 static char sccsid[] = "@(#)list.c     8.1 (Berkeley) 5/31/93";
 #else
-__RCSID("$NetBSD: list.c,v 1.6 2003/08/07 09:36:54 agc Exp $");
+__RCSID("$NetBSD: list.c,v 1.9 2015/06/19 06:02:31 dholland Exp $");
 #endif
 #endif /* not lint */
 
-#include "include.h"
+#include <stdlib.h>
 
-PLANE  *
-newplane()
+#include "def.h"
+#include "struct.h"
+#include "extern.h"
+#include "tunable.h"
+
+PLANE *
+newplane(void)
 {
-       return ((PLANE *) calloc(1, sizeof (PLANE)));
+       return calloc(1, sizeof (PLANE));
 }
 
 void
-append(l, p)
-       LIST    *l;
-       PLANE   *p;
+append(LIST *l, PLANE *p)
 {
        PLANE   *q = NULL, *r = NULL;
 
@@ -98,9 +101,7 @@ append(l, p)
 }
 
 void
-delete(l, p)
-       LIST    *l;
-       PLANE   *p;
+delete(LIST *l, PLANE *p)
 {
        if (l->head == NULL)
                loser(p, "deleted a non-existent plane! Get help!");