diff options
Diffstat (limited to 'src/include/time.h')
-rw-r--r-- | src/include/time.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/include/time.h b/src/include/time.h new file mode 100644 index 00000000..991f0b4d --- /dev/null +++ b/src/include/time.h @@ -0,0 +1,14 @@ +#ifndef TIME_H +#define TIME_H + +#include "../../include/time.h" + +int __clock_gettime(clockid_t, struct timespec *); + +char *__asctime_r(const struct tm *, char *); +struct tm *__gmtime_r(const time_t *restrict, struct tm *restrict); +struct tm *__localtime_r(const time_t *restrict, struct tm *restrict); + +size_t __strftime_l(char *restrict, size_t, const char *restrict, const struct tm *restrict, locale_t); + +#endif |