asctime.c | 32 /* Publish asctime_r and ctime_r only when supporting older POSIX. */ 37 # undef asctime_r 39 # define asctime_r static_asctime_r macro 46 __weak_alias(asctime_r,_asctime_r) 86 asctime_r(struct tm const *restrict timeptr, char *restrict buf) function in typeref:typename:asctime_static char * 159 return asctime_r(timeptr, buf_asctime); 169 return tmp ? asctime_r(tmp, buf) : NULL; 178 return tmp ? asctime_r(tmp, buf) : NULL;
|