musl-tcc/compat/time32/mktime32.c

17 lines
264 B
C
Raw Permalink Normal View History

2022-03-20 08:48:53 +00:00
#include "time32.h"
#include <time.h>
#include <errno.h>
#include <stdint.h>
time32_t __mktime32(struct tm *tm)
{
struct tm tmp = *tm;
time_t t = mktime(&tmp);
if (t < INT32_MIN || t > INT32_MAX) {
errno = EOVERFLOW;
return -1;
}
*tm = tmp;
return t;
}