summaryrefslogtreecommitdiffstats
path: root/rain
diff options
context:
space:
mode:
authorthorpej <thorpej@NetBSD.org>1999-08-04 18:38:12 +0000
committerthorpej <thorpej@NetBSD.org>1999-08-04 18:38:12 +0000
commit07ad32ded9bf3c85ca2c9a94446e9e0d091638ae (patch)
tree37fc8f37ec3c4c5940cff7872089bdf445e3d4ed /rain
parent15f2f45599ebe7e34a9d0f3f08fdacf2328a39f6 (diff)
downloadbsdgames-darwin-07ad32ded9bf3c85ca2c9a94446e9e0d091638ae.tar.gz
bsdgames-darwin-07ad32ded9bf3c85ca2c9a94446e9e0d091638ae.tar.zst
bsdgames-darwin-07ad32ded9bf3c85ca2c9a94446e9e0d091638ae.zip
Need <strings.h>.
Diffstat (limited to 'rain')
-rw-r--r--rain/rain.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/rain/rain.c b/rain/rain.c
index 184833bd..e47186c7 100644
--- a/rain/rain.c
+++ b/rain/rain.c
@@ -1,4 +1,4 @@
-/* $NetBSD: rain.c,v 1.11 1999/07/30 02:14:56 hubertf Exp $ */
+/* $NetBSD: rain.c,v 1.12 1999/08/04 18:38:12 thorpej Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -43,7 +43,7 @@ __COPYRIGHT("@(#) Copyright (c) 1980, 1993\n\
#if 0
static char sccsid[] = "@(#)rain.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: rain.c,v 1.11 1999/07/30 02:14:56 hubertf Exp $");
+__RCSID("$NetBSD: rain.c,v 1.12 1999/08/04 18:38:12 thorpej Exp $");
#endif
#endif /* not lint */
@@ -58,6 +58,7 @@ __RCSID("$NetBSD: rain.c,v 1.11 1999/07/30 02:14:56 hubertf Exp $");
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
+#include <string.h>
#include <unistd.h>
volatile sig_atomic_t sig_caught = 0;