Lines Matching refs:__LIBC_ABI_PUBLIC__

40 extern char* tzname[] __LIBC_ABI_PUBLIC__;
41 extern int daylight __LIBC_ABI_PUBLIC__;
42 extern long int timezone __LIBC_ABI_PUBLIC__;
62 extern time_t time(time_t*) __LIBC_ABI_PUBLIC__;
63 extern int nanosleep(const struct timespec*, struct timespec*) __LIBC_ABI_PUBLIC__;
65 extern char* asctime(const struct tm*) __LIBC_ABI_PUBLIC__;
66 extern char* asctime_r(const struct tm*, char*) __LIBC_ABI_PUBLIC__;
68 extern double difftime(time_t, time_t) __LIBC_ABI_PUBLIC__;
69 extern time_t mktime(struct tm*) __LIBC_ABI_PUBLIC__;
71 extern struct tm* localtime(const time_t*) __LIBC_ABI_PUBLIC__;
72 extern struct tm* localtime_r(const time_t*, struct tm*) __LIBC_ABI_PUBLIC__;
74 extern struct tm* gmtime(const time_t*) __LIBC_ABI_PUBLIC__;
75 extern struct tm* gmtime_r(const time_t*, struct tm*) __LIBC_ABI_PUBLIC__;
77 extern char* strptime(const char*, const char*, struct tm*) __LIBC_ABI_PUBLIC__;
78 extern size_t strftime(char*, size_t, const char*, const struct tm*) __LIBC_ABI_PUBLIC__;
79 extern size_t strftime_l(char *, size_t, const char *, const struct tm *, locale_t) __LIBC_ABI_PUBLIC__;
81 extern char* ctime(const time_t*) __LIBC_ABI_PUBLIC__;
82 extern char* ctime_r(const time_t*, char*) __LIBC_ABI_PUBLIC__;
84 extern void tzset(void) __LIBC_ABI_PUBLIC__;
86 extern clock_t clock(void) __LIBC_ABI_PUBLIC__;
88 extern int clock_getcpuclockid(pid_t, clockid_t*) __LIBC_ABI_PUBLIC__;
90 extern int clock_getres(clockid_t, struct timespec*) __LIBC_ABI_PUBLIC__;
91 extern int clock_gettime(clockid_t, struct timespec*) __LIBC_ABI_PUBLIC__;
92 extern int clock_nanosleep(clockid_t, int, const struct timespec*, struct timespec*) __LIBC_ABI_PUBLIC__;
93 extern int clock_settime(clockid_t, const struct timespec*) __LIBC_ABI_PUBLIC__;
95 extern int timer_create(int, struct sigevent*, timer_t*) __LIBC_ABI_PUBLIC__;
96 extern int timer_delete(timer_t) __LIBC_ABI_PUBLIC__;
97 extern int timer_settime(timer_t, int, const struct itimerspec*, struct itimerspec*) __LIBC_ABI_PUBLIC__;
98 extern int timer_gettime(timer_t, struct itimerspec*) __LIBC_ABI_PUBLIC__;
99 extern int timer_getoverrun(timer_t) __LIBC_ABI_PUBLIC__;
102 extern time_t timelocal(struct tm*) __LIBC_ABI_PUBLIC__;
103 extern time_t timegm(struct tm*) __LIBC_ABI_PUBLIC__;