|
wpa_supplicant / hostapd 2.0
|
00001 00014 #ifndef INCLUDES_H 00015 #define INCLUDES_H 00016 00017 /* Include possible build time configuration before including anything else */ 00018 #include "build_config.h" 00019 00020 #include <stdlib.h> 00021 #include <stdio.h> 00022 #include <stdarg.h> 00023 #include <string.h> 00024 #ifndef _WIN32_WCE 00025 #ifndef CONFIG_TI_COMPILER 00026 #include <signal.h> 00027 #include <sys/types.h> 00028 #endif /* CONFIG_TI_COMPILER */ 00029 #include <errno.h> 00030 #endif /* _WIN32_WCE */ 00031 #include <ctype.h> 00032 00033 #ifndef CONFIG_TI_COMPILER 00034 #ifndef _MSC_VER 00035 #include <unistd.h> 00036 #endif /* _MSC_VER */ 00037 #endif /* CONFIG_TI_COMPILER */ 00038 00039 #ifndef CONFIG_NATIVE_WINDOWS 00040 #ifndef CONFIG_TI_COMPILER 00041 #include <sys/socket.h> 00042 #include <netinet/in.h> 00043 #include <arpa/inet.h> 00044 #ifndef __vxworks 00045 #include <sys/uio.h> 00046 #include <sys/time.h> 00047 #endif /* __vxworks */ 00048 #endif /* CONFIG_TI_COMPILER */ 00049 #endif /* CONFIG_NATIVE_WINDOWS */ 00050 00051 #endif /* INCLUDES_H */ 00052
1.7.3