unistd.h 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /****************************************************************************
  2. Copyright (c) 2020 Qualcomm Technologies, Inc.
  3. All Rights Reserved.
  4. Confidential and Proprietary - Qualcomm Technologies, Inc.
  5. *****************************************************************************
  6. 2013 Qualcomm Atheros, Inc.
  7. ****************************************************************************/
  8. /*====================================================================*
  9. *
  10. * unistd.h - substitute unistd.h file for Windows;
  11. *
  12. * this is an important POSIX header that Microsoft ommits;
  13. *
  14. * Contributor(s):
  15. * Charles Maier <cmaier@qca.qualcomm.com>
  16. * Nathaniel Houghton <nhoughto@qca.qualcomm.com>
  17. *
  18. *--------------------------------------------------------------------*/
  19. #ifndef UNISTD_HEADER
  20. #define UNISTD_HEADER
  21. /*====================================================================*
  22. * system header files
  23. *--------------------------------------------------------------------*/
  24. #if defined (WIN32)
  25. #include <io.h>
  26. #endif
  27. /*====================================================================*
  28. *
  29. *--------------------------------------------------------------------*/
  30. #if defined (WIN32)
  31. #define F_OK 0
  32. #define W_OK 2
  33. #define R_OK 4
  34. #define X_OK 8
  35. #endif
  36. #define STDIN_FILENO 0
  37. #define STDOUT_FILENO 1
  38. #define STDERR_FILENO 2
  39. #define HOST_NAME_MAX 256
  40. /*====================================================================*
  41. *
  42. *--------------------------------------------------------------------*/
  43. #if defined (WIN32)
  44. #define sleep(x) Sleep(1000*(x))
  45. #define strcasecmp(a,b) stricmp(a,b)
  46. typedef signed ssize_t;
  47. #endif
  48. #if !defined (_MSC_VER) || _MSC_VER < 1500
  49. #define vsnprintf _vsnprintf
  50. #endif
  51. #if _MSC_VER < 1900
  52. #define snprintf _snprintf
  53. #endif
  54. #define access _access
  55. /*====================================================================*
  56. *
  57. *--------------------------------------------------------------------*/
  58. #endif