Include string.h where we use memset

This is needed on Solaris/Illumos/OpenIndiana/SunOS.

Presumably it's harmless elsewhere.
This commit is contained in:
Fabian Homborg 2019-02-13 13:27:20 +01:00
parent 02ca7be416
commit 7508865374
2 changed files with 2 additions and 0 deletions

View File

@ -4,6 +4,7 @@
#include <errno.h>
#include <stddef.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <wchar.h>

View File

@ -4,6 +4,7 @@
#include <pthread.h>
#include <signal.h>
#include <stdio.h>
#include <string.h>
#include <sys/select.h>
#include <sys/time.h>
#include <sys/types.h>