Luna/libc/include/bits/timespec.h
apio b70bbc0ba6
All checks were successful
continuous-integration/drone/push Build is passing
More libc commenting
2023-01-07 11:21:53 +01:00

15 lines
197 B
C

/* bits/timespec.h: Defines the timespec structure. */
#ifndef _BITS_TIMESPEC_H
#define _BITS_TIMESPEC_H
#include <sys/types.h>
struct timespec
{
time_t tv_sec;
long tv_nsec;
};
#endif