/* * Author: Manoj Ampalam * * POSIX header and needed function definitions */ #ifndef COMPAT_UNISTD_H #define COMPAT_UNISTD_H 1 #include "w32posix.h" #define pipe(a) w32_pipe((a)) #define open(a,b,...) w32_open((a), (b), __VA_ARGS__) #define read(a,b,c) w32_read((a), (b), (c)) #define write(a,b,c) w32_write((a), (b), (c)) #define isatty(a) w32_isatty((a)) #define close(a) w32_close((a)) #define dup(a) w32_dup((a)) #define dup2(a,b) w32_dup2((a), (b)) #define sleep(sec) Sleep(1000 * sec) #define alarm(a) w32_alarm((a)) /* Compatibility header to avoid lots of #ifdefs in includes.h on Win32 */ #include #include /* We can't put these in string.h since we can't easily override that header, so here they are */ #if !defined(HAVE_STRCASECMP) && !defined(__MINGW32__) size_t strcasecmp(const char *left, const char *right); #endif #if !defined(HAVE_STRNCASECMP) && !defined(__MINGW32__) size_t strncasecmp(const char *left, const char *right, size_t n); #endif int gettimeofday(struct timeval *tv, void *tz); /* End of prototypes in the wrong file */ #endif