#include "time_impl.h"
struct tm *localtime(const time_t *t)
{
static struct tm tm;
return __localtime_r(t, &tm);
}
#ifdef TEST
int
main(void) {
return 0;
}
#endif
![]() |
index : grovel | |
| Unnamed repository; edit this file 'description' to name the repository. | External SSH Git service user |
| aboutsummaryrefslogtreecommitdiff |
#include "time_impl.h"
struct tm *localtime(const time_t *t)
{
static struct tm tm;
return __localtime_r(t, &tm);
}
#ifdef TEST
int
main(void) {
return 0;
}
#endif