opuntiaOS - an operating system targeting x86 and ARMv7
at master 14 lines 243 B view raw
1#ifndef _LIBC_SYS_TIME_H 2#define _LIBC_SYS_TIME_H 3 4#include <bits/time.h> 5#include <sys/cdefs.h> 6 7__BEGIN_DECLS 8 9int gettimeofday(timeval_t* tv, timezone_t* tz); 10int settimeofday(const timeval_t* tv, const timezone_t* tz); 11 12__END_DECLS 13 14#endif