mirror of
https://github.com/JannisHeydemann/BoredOS.git
synced 2026-05-29 18:16:57 +00:00
7 lines
199 B
C
7 lines
199 B
C
#ifndef _SYS_TIME_H
|
|
#define _SYS_TIME_H
|
|
struct timeval { long tv_sec; long tv_usec; };
|
|
struct timezone { int tz_minuteswest; int tz_dsttime; };
|
|
int gettimeofday(struct timeval *tv, void *tz);
|
|
#endif
|