2 * Acess2 POSIX Emulation
3 * - By John Hodge (thePowersGang)
5 * time.h (libposix version)
6 * - Time and Clock definitions
8 * NOTE: Included by libc's time.h
10 #ifndef _LIBPOSIX__TIME_H_
11 #define _LIBPOSIX__TIME_H_
25 typedef enum clockid_e clockid_t;
27 extern int clock_getres(clockid_t clk_id, struct timespec *res);
28 extern int clock_gettime(clockid_t clk_id, struct timespec *tp);
29 extern int clock_settime(clockid_t clk_id, const struct timespec *tp);