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