mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2025-07-07 00:04:57 +03:00
Include headers properly
This commit is contained in:
@ -5,19 +5,46 @@
|
||||
// Unix.c
|
||||
// UNIX dependent code
|
||||
|
||||
#include <GlobalConst.h>
|
||||
#ifdef OS_UNIX
|
||||
|
||||
#ifdef UNIX
|
||||
#include "Unix.h"
|
||||
|
||||
#include "Cfg.h"
|
||||
#include "FileIO.h"
|
||||
#include "GlobalConst.h"
|
||||
#include "Internat.h"
|
||||
#include "Kernel.h"
|
||||
#include "Mayaqua.h"
|
||||
#include "Memory.h"
|
||||
#include "Network.h"
|
||||
#include "Object.h"
|
||||
#include "Str.h"
|
||||
#include "Table.h"
|
||||
#include "Tick64.h"
|
||||
|
||||
#include <errno.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <wchar.h>
|
||||
#include <stdarg.h>
|
||||
#include <time.h>
|
||||
#include <errno.h>
|
||||
|
||||
#include <dirent.h>
|
||||
#include <fcntl.h>
|
||||
#include <poll.h>
|
||||
#include <pthread.h>
|
||||
#include <signal.h>
|
||||
|
||||
#include <sys/mount.h>
|
||||
#include <sys/param.h>
|
||||
#include <sys/resource.h>
|
||||
#include <sys/stat.h>
|
||||
#include <sys/time.h>
|
||||
#include <sys/types.h>
|
||||
#include <sys/utsname.h>
|
||||
#include <Mayaqua/Mayaqua.h>
|
||||
#include <sys/wait.h>
|
||||
|
||||
#ifdef UNIX_LINUX
|
||||
#include <sys/statfs.h>
|
||||
#endif
|
||||
|
||||
#ifdef UNIX_MACOS
|
||||
#ifdef NO_VLAN
|
||||
|
Reference in New Issue
Block a user