-/* $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>
/*
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();
}
}
/*ARGSUSED*/
void
choke(n)
- int n;
+ int n __attribute__((__unused__));
{
leave(LEAVE_QUIT);
}
/*ARGSUSED*/
void
child(n)
- int n;
+ int n __attribute__((__unused__));
{
union wait status;
int pid;