| 1 | #ifndef TIME_H |
| 2 | #define TIME_H |
| 3 | |
| 4 | #include "../../include/time.h" |
| 5 | |
| 6 | hidden int __clock_gettime(clockid_t, struct timespec *); |
| 7 | hidden int __clock_nanosleep(clockid_t, int, const struct timespec *, struct timespec *); |
| 8 | |
| 9 | hidden char *__asctime_r(const struct tm *, char *); |
| 10 | hidden struct tm *__gmtime_r(const time_t *restrict, struct tm *restrict); |
| 11 | hidden struct tm *__localtime_r(const time_t *restrict, struct tm *restrict); |
| 12 | |
| 13 | hidden size_t __strftime_l(char *restrict, size_t, const char *restrict, const struct tm *restrict, locale_t); |
| 14 | |
| 15 | #endif |