blob: 991f0b4d68ce91c6a4f07257c4218cc0b74540b3 [file] [log] [blame]
#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