Include missing headers.

This commit is contained in:
Stefan Farfeleder 2005-02-09 09:13:36 +00:00
parent 36c64d7c3e
commit a3eb24c68b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=141563
4 changed files with 6 additions and 0 deletions

View File

@ -56,6 +56,7 @@ static char sccsid[] = "@(#)locate.bigram.c 8.1 (Berkeley) 6/6/93";
*/
#include <stdio.h>
#include <stdlib.h>
#include <sys/param.h> /* for MAXPATHLEN */
#include "locate.h"

View File

@ -52,6 +52,7 @@ static const char sccsid[] = "@(#)main.c 8.2 (Berkeley) 1/3/94";
#include <err.h>
#include <errno.h>
#include <fcntl.h>
#include <libgen.h>
#include <limits.h>
#include <locale.h>
#include <regex.h>

View File

@ -47,6 +47,9 @@ static const char sccsid[] = "@(#)ctl.c 8.1 (Berkeley) 6/6/93";
#include <sys/types.h>
#include <sys/socket.h>
#include <string.h>
#include "talk.h"
struct sockaddr_in daemon_addr = { sizeof(daemon_addr), AF_INET };

View File

@ -44,6 +44,7 @@ static const char sccsid[] = "@(#)look_up.c 8.1 (Berkeley) 6/6/93";
#include <protocols/talkd.h>
#include <errno.h>
#include <string.h>
#include "talk_ctl.h"
#include "talk.h"