client: Add a missing #include <string.h>

play.c needs <string.h> since commit f1fc0df.  My version of
<readline/readline.h> pulls it in, but at least Apple's (derived from
NetBSD's) doesn't, and we get warnings then.  Add the missing

Signed-off-by: Markus Armbruster <armbru@pond.sub.org>
This commit is contained in:
Markus Armbruster 2017-09-02 14:45:53 +02:00
parent ece998e064
commit 3a13ba1f1f

View file

@ -39,6 +39,7 @@
#include <signal.h> #include <signal.h>
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <string.h>
#ifdef _WIN32 #ifdef _WIN32
#include <process.h> #include <process.h>
#include <sys/socket.h> #include <sys/socket.h>