1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-14 10:09:48 +00:00

Include missing header files which define functions for which gcc has

builtints (e.g., exit, strcmp).
This commit is contained in:
Dima Dorfman 2001-06-24 23:22:14 +00:00
parent cafefe8c1b
commit 9582ea7e62
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=78733
2 changed files with 2 additions and 0 deletions

View File

@ -41,6 +41,7 @@ static const char rcsid[] =
#include <err.h>
#include <pwd.h>
#include <stdlib.h>
#include <string.h>
#include <sys/param.h>
#include "talk.h"

View File

@ -46,6 +46,7 @@ static const char rcsid[] =
#include <err.h>
#include <signal.h>
#include <stdlib.h>
#include <sys/stat.h>
#include <unistd.h>
#include <termios.h>