2023-01-08 14:29:30 +00:00
|
|
|
/* bits/timespec.h: The timespec structure. */
|
2023-01-07 10:21:53 +00:00
|
|
|
|
2023-01-06 23:21:08 +00:00
|
|
|
#ifndef _BITS_TIMESPEC_H
|
|
|
|
#define _BITS_TIMESPEC_H
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
struct timespec
|
|
|
|
{
|
|
|
|
time_t tv_sec;
|
|
|
|
long tv_nsec;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|