mirror of
https://github.com/pret/agbcc.git
synced 2026-07-10 06:24:38 -05:00
14 lines
175 B
C
Executable File
14 lines
175 B
C
Executable File
/* Imitation sys/time.h. */
|
|
|
|
#ifndef __SYS_TIME_H__
|
|
#define __SYS_TIME_H__
|
|
|
|
#include <time.h>
|
|
|
|
struct timeval {
|
|
long tv_sec;
|
|
long tv_usec;
|
|
};
|
|
|
|
#endif /* __SYS_TIME_H__ */
|