diff options
Diffstat (limited to 'libevent/WIN32-Code/misc.h')
-rw-r--r-- | libevent/WIN32-Code/misc.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/libevent/WIN32-Code/misc.h b/libevent/WIN32-Code/misc.h new file mode 100644 index 00000000000..aced574687c --- /dev/null +++ b/libevent/WIN32-Code/misc.h @@ -0,0 +1,11 @@ +#ifndef MISC_H +#define MISC_H + +struct timezone; +struct timeval; + +#ifndef HAVE_GETTIMEOFDAY +int gettimeofday(struct timeval *,struct timezone *); +#endif + +#endif |