/* * wpa_supplicant/hostapd - Default include files * Copyright (c) 2005-2006, Jouni Malinen * * This software may be distributed under the terms of the BSD license. * See README for more details. * * This header file is included into all C files so that commonly used header * files can be selected with OS specific ifdef blocks in one place instead of * having to have OS/C library specific selection in many files. */ #ifndef INCLUDES_H #define INCLUDES_H /* Include possible build time configuration before including anything else */ #include "build_config.h" #include #include #include #include #include #include #if !(defined(_WIN32_WCE) || defined(__ZEPHYR__)) #include #include #include #endif /* _WIN32_WCE */ #include #if !(defined(MSC_VER) || defined(__ZEPHYR__)) #include #endif /* _MSC_VER */ #if !(defined(CONFIG_NATIVE_WINDOWS) || defined(__ZEPHYR__)) #include #include #include #ifndef __vxworks #include #include #endif /* __vxworks */ #endif /* CONFIG_NATIVE_WINDOWS */ #if defined(__ZEPHYR__) #include #if defined(CONFIG_POSIX_API) #include #include #include #include #include #else /* defined(CONFIG_POSIX_API) */ #include #include #include #endif /* defined(CONFIG_POSIX_API) */ #include #define signal(a, b) (void)(b) #endif /* defined(__ZEPHYR__) */ #endif /* INCLUDES_H */