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