unistdx.h 238 B

1234567891011121314
  1. #ifndef UNISTDX_H_INCLUDED
  2. #define UNISTDX_H_INCLUDED
  3. /* Xmlrpc-c code #includes "unistdx.h" instead of <unistd.h> because
  4. <unistd.h> does not exist on WIN32.
  5. */
  6. #ifndef WIN32
  7. # include <unistd.h>
  8. #else
  9. #endif /* WIN32 */
  10. #endif