Add #include string.h to get prototypes.

This commit is contained in:
John Birrell 1998-05-09 09:39:46 +00:00
parent eb3846e9e5
commit ea565b5141
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=35873
3 changed files with 3 additions and 0 deletions

View file

@ -35,6 +35,7 @@
static char sccsid[] = "@(#)com4.c 8.1 (Berkeley) 5/31/93";
#endif /* not lint */
#include <string.h>
#include "externs.h"
take(from)

View file

@ -38,6 +38,7 @@ static char sccsid[] = "@(#)fly.c 8.1 (Berkeley) 5/31/93";
#include "externs.h"
#undef UP
#include <curses.h>
#include <string.h>
#define abs(a) ((a) < 0 ? -(a) : (a))
#define MIDR (LINES/2 - 1)

View file

@ -38,6 +38,7 @@ static char sccsid[] = "@(#)init.c 8.1 (Berkeley) 5/31/93";
#include <sys/types.h>
#include "externs.h"
#include <pwd.h>
#include <string.h>
initialize(startup)
char startup;