forgot include

This commit is contained in:
cathugger 2018-02-22 01:52:16 +00:00
parent fa7d5cdab5
commit 5df37bb545

View file

@ -41,10 +41,16 @@
# include <sys/sysctl.h>
#endif
#include <unistd.h>
#include <string.h>
#include <stdio.h>
#ifndef _WIN32
#include <unistd.h>
#else
#define UNICODE 1
#include <windows.h>
#endif
#ifdef __linux__
#include <stdio.h>
#include <stdlib.h>