mirror of
https://github.com/bebbo/amigaos-binutils-2.14.git
synced 2025-12-08 22:38:24 +00:00
14 lines
175 B
C
14 lines
175 B
C
/* 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__ */
|