add #include <string.h> for memset/strcpy

This commit is contained in:
leitner 2016-10-22 10:34:24 +00:00
parent 6cd198cb98
commit a7f74699da
3 changed files with 3 additions and 0 deletions

View File

@ -3,6 +3,7 @@
#include <sys/socket.h>
#include <netinet/in.h>
#endif
#include <string.h>
#include "windoze.h"
#include "socket.h"
#include "havesl.h"

View File

@ -1,5 +1,6 @@
#include <sys/param.h>
#include <sys/types.h>
#include <string.h>
#ifndef __MINGW32__
#include <sys/socket.h>
#include <netinet/in.h>

View File

@ -1,6 +1,7 @@
#include "socket.h"
#include <sys/types.h>
#include <string.h>
#ifndef __MINGW32__
#include <sys/socket.h>
#include <netinet/in.h>