includes.h 827 B

12345678910111213141516171819202122232425262728293031323334
  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 <stdlib.h>
  15. #include <stdio.h>
  16. #include <stdarg.h>
  17. #include <string.h>
  18. #include <signal.h>
  19. #include <sys/types.h>
  20. #include <errno.h>
  21. #include <ctype.h>
  22. #include <unistd.h>
  23. #include <sys/socket.h>
  24. #include <netinet/in.h>
  25. #include <arpa/inet.h>
  26. #include <sys/uio.h>
  27. #include <sys/time.h>
  28. #include <pthread.h>
  29. #include <semaphore.h>
  30. #endif