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