wpa_supplicant / hostapd  2.5
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
includes.h
Go to the documentation of this file.
1 
9 #ifndef INCLUDES_H
10 #define INCLUDES_H
11 
12 /* Include possible build time configuration before including anything else */
13 #include "build_config.h"
14 
15 #include <stdlib.h>
16 #include <stddef.h>
17 #include <stdio.h>
18 #include <stdarg.h>
19 #include <string.h>
20 #ifndef _WIN32_WCE
21 #include <signal.h>
22 #include <sys/types.h>
23 #include <errno.h>
24 #endif /* _WIN32_WCE */
25 #include <ctype.h>
26 
27 #ifndef _MSC_VER
28 #include <unistd.h>
29 #endif /* _MSC_VER */
30 
31 #ifndef CONFIG_NATIVE_WINDOWS
32 #include <sys/socket.h>
33 #include <netinet/in.h>
34 #include <arpa/inet.h>
35 #ifndef __vxworks
36 #include <sys/uio.h>
37 #include <sys/time.h>
38 #endif /* __vxworks */
39 #endif /* CONFIG_NATIVE_WINDOWS */
40 
41 #endif /* INCLUDES_H */
wpa_supplicant/hostapd - Build time configuration defines