Luna/libc/include/sys/time.h
apio 8bcec00a9d
All checks were successful
continuous-integration/drone/push Build is passing
kernel: Change the timer subsystem to use timespecs natively
2023-06-03 13:15:10 +02:00

24 lines
351 B
C

/* sys/time.h: POSIX time types. */
#ifndef _SYS_TIME_H
#define _SYS_TIME_H
#define _INCLUDE_TIMESPEC_MACROS
#include <bits/attrs.h>
#include <bits/timespec.h>
#ifdef __cplusplus
extern "C"
{
#endif
/* Get the current time of day. */
__deprecated int gettimeofday(struct timeval* tp, void* timezone);
#ifdef __cplusplus
}
#endif
#endif