diff options
Diffstat (limited to 'compat/time32/localtime32_r.c')
-rw-r--r-- | compat/time32/localtime32_r.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/compat/time32/localtime32_r.c b/compat/time32/localtime32_r.c new file mode 100644 index 00000000..633ec829 --- /dev/null +++ b/compat/time32/localtime32_r.c @@ -0,0 +1,7 @@ +#include "time32.h" +#include <time.h> + +struct tm *__localtime32_r(time32_t *t, struct tm *tm) +{ + return localtime_r(&(time_t){*t}, tm); +} |