ede/ede-bug-tools/ede-bug-report/xmlrpc-c/deps/util/include/unistdx.h
2009-07-03 14:23:51 +00:00

15 lines
238 B
C

#ifndef UNISTDX_H_INCLUDED
#define UNISTDX_H_INCLUDED
/* Xmlrpc-c code #includes "unistdx.h" instead of <unistd.h> because
<unistd.h> does not exist on WIN32.
*/
#ifndef WIN32
# include <unistd.h>
#else
#endif /* WIN32 */
#endif