-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathincludes_system.h
75 lines (65 loc) · 1.65 KB
/
includes_system.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/***************************************************************************
***************************************************************************
(c) 1999-2006 Ganymede Technologies All Rights Reserved
Krakow, Poland www.ganymede.eu
***************************************************************************
***************************************************************************/
#ifndef LINUX
#undef FD_SETSIZE
#define FD_SETSIZE 1024
#endif
/***************************************/
/***************************************/
//INCLUDES
/***************************************/
/***************************************/
#include "stdio.h"
#include "string.h"
#include "stdlib.h"
#include "stdarg.h"
#include <time.h>
#include <sys/types.h>
#include <sys/timeb.h>
#include <sys/stat.h>
#include "ctype.h"
#include "math.h"
#ifndef LINUX
#include "crtdbg.h" //----
#include "windows.h"
#include <io.h>
#include <conio.h>
#else
#include <syslog.h>
#include <sys/time.h>
#include <sys/timeb.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/poll.h>
#include <sys/wait.h>
#include <sys/uio.h>
#include <sys/ioctl.h>
#include <sys/mman.h>
#ifndef MACOSX
#include <sys/epoll.h>
#endif
#include <malloc.h>
#include <unistd.h>
#include <netdb.h>
#include <netinet/in.h>
#include <netinet/tcp.h>
#include <unistd.h>
#include <arpa/inet.h>
#include <stdio.h>
#include <string.h>
#include <fcntl.h>
#include <errno.h>
#include <signal.h>
#include <semaphore.h>
#include <pthread.h>
#include <netdb.h>
#include <utmp.h>
#include <grp.h>
#include <pwd.h>
#include <wchar.h>
#endif
#include "mysql.h"