includes.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /*
  2. * wpa_supplicant/hostapd - Default include files
  3. * Copyright (c) 2005-2006, Jouni Malinen <j@w1.fi>
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. *
  8. * This header file is included into all C files so that commonly used header
  9. * files can be selected with OS specific ifdef blocks in one place instead of
  10. * having to have OS/C library specific selection in many files.
  11. */
  12. #ifndef INCLUDES_H
  13. #define INCLUDES_H
  14. /* Include possible build time configuration before including anything else */
  15. #include "build_config.h"
  16. #include <stdlib.h>
  17. #include <stddef.h>
  18. #include <stdio.h>
  19. #include <stdarg.h>
  20. #include <string.h>
  21. #ifndef _WIN32_WCE
  22. #include <signal.h>
  23. #include <sys/types.h>
  24. #include <errno.h>
  25. #endif /* _WIN32_WCE */
  26. #include <ctype.h>
  27. #ifndef _MSC_VER
  28. #include <unistd.h>
  29. #endif /* _MSC_VER */
  30. #ifndef CONFIG_NATIVE_WINDOWS
  31. #include <sys/socket.h>
  32. #include <netinet/in.h>
  33. #include <arpa/inet.h>
  34. #ifndef __vxworks
  35. #include <sys/uio.h>
  36. #include <sys/time.h>
  37. #endif /* __vxworks */
  38. #endif /* CONFIG_NATIVE_WINDOWS */
  39. #endif /* INCLUDES_H */