00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef INCLUDES_H
00020 #define INCLUDES_H
00021
00022
00023 #include "build_config.h"
00024
00025 #include <stdlib.h>
00026 #include <stdio.h>
00027 #include <stdarg.h>
00028 #include <string.h>
00029 #ifndef _WIN32_WCE
00030 #ifndef CONFIG_TI_COMPILER
00031 #include <signal.h>
00032 #include <sys/types.h>
00033 #endif
00034 #include <errno.h>
00035 #endif
00036 #include <ctype.h>
00037 #include <time.h>
00038
00039 #ifndef CONFIG_TI_COMPILER
00040 #ifndef _MSC_VER
00041 #include <unistd.h>
00042 #endif
00043 #endif
00044
00045 #ifndef CONFIG_NATIVE_WINDOWS
00046 #ifndef CONFIG_TI_COMPILER
00047 #include <sys/socket.h>
00048 #include <netinet/in.h>
00049 #include <arpa/inet.h>
00050 #ifndef __vxworks
00051 #ifndef __SYMBIAN32__
00052 #include <sys/uio.h>
00053 #endif
00054 #include <sys/time.h>
00055 #endif
00056 #endif
00057 #endif
00058
00059 #endif