mirror of
https://github.com/cuberite/libevent.git
synced 2025-08-22 18:46:28 -04:00
12 lines
160 B
C
12 lines
160 B
C
#ifndef MISC_H
|
|
#define MISC_H
|
|
|
|
struct timezone;
|
|
struct timeval;
|
|
|
|
#ifndef HAVE_GETTIMEOFDAY
|
|
int gettimeofday(struct timeval *,struct timezone *);
|
|
#endif
|
|
|
|
#endif
|