diff options
author | stefanf <stefanf@FreeBSD.org> | 2005-02-09 09:13:36 +0000 |
---|---|---|
committer | stefanf <stefanf@FreeBSD.org> | 2005-02-09 09:13:36 +0000 |
commit | ff18347bab2df60a7085159833d4374dc1743a56 (patch) | |
tree | 29e35b8b6a90b00c0bea13a224e5b5b81acde337 /usr.bin/talk | |
parent | 9a77daf15d891d6110d3166232b2d17c7a3794b8 (diff) | |
download | FreeBSD-src-ff18347bab2df60a7085159833d4374dc1743a56.zip FreeBSD-src-ff18347bab2df60a7085159833d4374dc1743a56.tar.gz |
Include missing headers.
Diffstat (limited to 'usr.bin/talk')
-rw-r--r-- | usr.bin/talk/ctl.c | 3 | ||||
-rw-r--r-- | usr.bin/talk/look_up.c | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/usr.bin/talk/ctl.c b/usr.bin/talk/ctl.c index 68b229c..717ffb3 100644 --- a/usr.bin/talk/ctl.c +++ b/usr.bin/talk/ctl.c @@ -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 }; diff --git a/usr.bin/talk/look_up.c b/usr.bin/talk/look_up.c index 6c40933..1ff1477 100644 --- a/usr.bin/talk/look_up.c +++ b/usr.bin/talk/look_up.c @@ -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" |