mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
9 lines
113 B
C
9 lines
113 B
C
|
#ifndef _TIMEVAL_T_DECL
|
||
|
#define _TIMEVAL_T_DECL
|
||
|
struct timeval
|
||
|
{
|
||
|
time_t tv_sec;
|
||
|
suseconds_t tv_usec;
|
||
|
};
|
||
|
#endif
|