0ad/source/linux/sys/time.h
olsner dd364a5fcd System header overrides, required for some buggy headers - they should
but might not work with non-buggy versions of them - we'll see

This was SVN commit r82.
2003-11-25 02:08:32 +00:00

20 lines
306 B
C
Executable file

#ifndef _bug_time_H
#define _bug_time_H
#include "/usr/include/sys/time.h"
#define __need_time_t
#include <time.h>
#ifndef __timespec_defined
#define __timespec_defined 1
struct timespec {
__time_t tv_sec;
long int tv_nsec;
};
#endif
typedef __time_t time_t;
typedef __clockid_t clockid_t;
#endif