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