]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - sail/pl_1.c
More include additions for exit, abs, strcmp, etc.
[bsdgames-darwin.git] / sail / pl_1.c
index 2e4618051e446928bba9454b4c1411be61927748..fe1b008fc9bab1829e0ff1ffb00a7abeaa1fd26e 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: pl_1.c,v 1.5 1997/10/13 21:04:02 christos Exp $        */
+/*     $NetBSD: pl_1.c,v 1.8 2000/07/03 03:57:43 matt Exp $    */
 
 /*
  * Copyright (c) 1983, 1993
 #if 0
 static char sccsid[] = "@(#)pl_1.c     8.1 (Berkeley) 5/31/93";
 #else
-__RCSID("$NetBSD: pl_1.c,v 1.5 1997/10/13 21:04:02 christos Exp $");
+__RCSID("$NetBSD: pl_1.c,v 1.8 2000/07/03 03:57:43 matt Exp $");
 #endif
 #endif /* not lint */
 
 #include "player.h"
 #include <sys/types.h>
 #include <sys/wait.h>
+#include <stdlib.h>
 #include <unistd.h>
 
 /*
@@ -109,7 +110,7 @@ int conditions;
                if (conditions != LEAVE_SYNC) {
                        makemsg(ms, "Captain %s relinquishing.",
                                mf->captain);
-                       Write(W_END, ms, 0, 0, 0, 0, 0);
+                       Write(W_END, ms, 0, 0, 0, 0);
                        (void) Sync();
                }
        }
@@ -122,7 +123,7 @@ int conditions;
 /*ARGSUSED*/
 void
 choke(n)
-       int n;
+       int n __attribute__((__unused__));
 {
        leave(LEAVE_QUIT);
 }
@@ -130,7 +131,7 @@ choke(n)
 /*ARGSUSED*/
 void
 child(n)
-       int n;
+       int n __attribute__((__unused__));
 {
        union wait status;
        int pid;