Remove a WIN32 #ifdef

This commit is contained in:
Oliver Jowett 2020-08-04 20:39:28 +08:00
parent bf8d6db148
commit 8734ec9992
1 changed files with 17 additions and 21 deletions

View File

@ -61,27 +61,23 @@
// ============================= Include files ========================== // ============================= Include files ==========================
#ifndef _WIN32 #include <stdio.h>
#include <stdio.h> #include <string.h>
#include <string.h> #include <stdlib.h>
#include <stdlib.h> #include <stdbool.h>
#include <stdbool.h> #include <pthread.h>
#include <pthread.h> #include <stdint.h>
#include <stdint.h> #include <errno.h>
#include <errno.h> #include <unistd.h>
#include <unistd.h> #include <math.h>
#include <math.h> #include <sys/time.h>
#include <sys/time.h> #include <signal.h>
#include <signal.h> #include <fcntl.h>
#include <fcntl.h> #include <ctype.h>
#include <ctype.h> #include <sys/stat.h>
#include <sys/stat.h> #include <sys/ioctl.h>
#include <sys/ioctl.h> #include <time.h>
#include <time.h> #include <limits.h>
#include <limits.h>
#else
#include "winstubs.h" //Put everything Windows specific in here
#endif
#include "compat/compat.h" #include "compat/compat.h"