Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/games/sail need string.h for prototype (checked with alpha)



details:   https://anonhg.NetBSD.org/src/rev/c07761b39e1c
branches:  trunk
changeset: 501560:c07761b39e1c
user:      itojun <itojun%NetBSD.org@localhost>
date:      Thu Jan 04 06:33:18 2001 +0000

description:
need string.h for prototype (checked with alpha)

diffstat:

 games/sail/misc.c |  5 +++--
 games/sail/pl_5.c |  5 +++--
 games/sail/pl_7.c |  5 +++--
 3 files changed, 9 insertions(+), 6 deletions(-)

diffs (77 lines):

diff -r 61845bd6c6e6 -r c07761b39e1c games/sail/misc.c
--- a/games/sail/misc.c Thu Jan 04 06:20:49 2001 +0000
+++ b/games/sail/misc.c Thu Jan 04 06:33:18 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: misc.c,v 1.10 2001/01/04 03:51:24 jwise Exp $  */
+/*     $NetBSD: misc.c,v 1.11 2001/01/04 06:33:18 itojun Exp $ */
 
 /*
  * Copyright (c) 1983, 1993
@@ -38,13 +38,14 @@
 #if 0
 static char sccsid[] = "@(#)misc.c     8.2 (Berkeley) 4/28/95";
 #else
-__RCSID("$NetBSD: misc.c,v 1.10 2001/01/04 03:51:24 jwise Exp $");
+__RCSID("$NetBSD: misc.c,v 1.11 2001/01/04 06:33:18 itojun Exp $");
 #endif
 #endif /* not lint */
 
 #include <ctype.h>
 #include <stdio.h>
 #include <unistd.h>
+#include <string.h>
 #include "extern.h"
 #include "pathnames.h"
 
diff -r 61845bd6c6e6 -r c07761b39e1c games/sail/pl_5.c
--- a/games/sail/pl_5.c Thu Jan 04 06:20:49 2001 +0000
+++ b/games/sail/pl_5.c Thu Jan 04 06:33:18 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pl_5.c,v 1.13 2001/01/04 06:16:51 jwise Exp $  */
+/*     $NetBSD: pl_5.c,v 1.14 2001/01/04 06:33:18 itojun Exp $ */
 
 /*
  * Copyright (c) 1983, 1993
@@ -38,7 +38,7 @@
 #if 0
 static char sccsid[] = "@(#)pl_5.c     8.1 (Berkeley) 5/31/93";
 #else
-__RCSID("$NetBSD: pl_5.c,v 1.13 2001/01/04 06:16:51 jwise Exp $");
+__RCSID("$NetBSD: pl_5.c,v 1.14 2001/01/04 06:33:18 itojun Exp $");
 #endif
 #endif /* not lint */
 
@@ -46,6 +46,7 @@
 #include <curses.h>
 #include <signal.h>
 #include <stdio.h>
+#include <string.h>
 #include "extern.h"
 #include "player.h"
 #include "display.h"
diff -r 61845bd6c6e6 -r c07761b39e1c games/sail/pl_7.c
--- a/games/sail/pl_7.c Thu Jan 04 06:20:49 2001 +0000
+++ b/games/sail/pl_7.c Thu Jan 04 06:33:18 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pl_7.c,v 1.21 2001/01/04 05:34:56 jwise Exp $  */
+/*     $NetBSD: pl_7.c,v 1.22 2001/01/04 06:33:18 itojun Exp $ */
 
 /*
  * Copyright (c) 1983, 1993
@@ -38,7 +38,7 @@
 #if 0
 static char sccsid[] = "@(#)pl_7.c     8.1 (Berkeley) 5/31/93";
 #else
-__RCSID("$NetBSD: pl_7.c,v 1.21 2001/01/04 05:34:56 jwise Exp $");
+__RCSID("$NetBSD: pl_7.c,v 1.22 2001/01/04 06:33:18 itojun Exp $");
 #endif
 #endif /* not lint */
 
@@ -47,6 +47,7 @@
 #include <stdarg.h>
 #include <stdio.h>
 #include <unistd.h>
+#include <string.h>
 #include "extern.h"
 #include "player.h"
 #include "display.h"



Home | Main Index | Thread Index | Old Index