mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-17 05:44:08 -07:00
20 lines
306 B
C
Executable file
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
|