| /** | |
| * This file has no copyright assigned and is placed in the Public Domain. | |
| * This file is part of the w64 mingw-runtime package. | |
| * No warranty is given; refer to the file DISCLAIMER within this package. | |
| */ | |
| extern "C" { | |
| struct timeval { | |
| long tv_sec; | |
| long tv_usec; | |
| }; | |
| /* Provided for compatibility with code that assumes that | |
| the presence of gettimeofday function implies a definition | |
| of struct timezone. */ | |
| struct timezone | |
| { | |
| int tz_minuteswest; /* of Greenwich */ | |
| int tz_dsttime; /* type of dst correction to apply */ | |
| }; | |
| extern int __cdecl mingw_gettimeofday (struct timeval *p, struct timezone *z); | |
| /* | |
| Implementation as per: | |
| The Open Group Base Specifications, Issue 6 | |
| IEEE Std 1003.1, 2004 Edition | |
| The timezone pointer arg is ignored. Errors are ignored. | |
| */ | |
| int __cdecl gettimeofday(struct timeval *__restrict__, | |
| void *__restrict__ /* tzp (unused) */); | |
| } | |
| /* Adding timespec definition. */ | |