/* * 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 #ifdef __rtems__ #include #define os_malloc(x) rtems_bsd_program_malloc((x)) #define os_realloc(x, y) rtems_bsd_program_realloc((x), (y)) #define os_free(x) rtems_bsd_program_free((x)) #define os_strdup(x) rtems_bsd_program_strdup((x)) #endif /* __rtems__ */ /* Include possible build time configuration before including anything else */ #include "build_config.h" #include #include #include #include #include #ifndef _WIN32_WCE #include #include #include #endif /* _WIN32_WCE */ #include #ifndef _MSC_VER #include #endif /* _MSC_VER */ #ifndef CONFIG_NATIVE_WINDOWS #include #include #include #ifndef __vxworks #include #include #endif /* __vxworks */ #endif /* CONFIG_NATIVE_WINDOWS */ #endif /* INCLUDES_H */