24 lines
351 B
C
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
|