blob: e6f15d513a4dc3a40b57bbe2c93482f593a43ef8 [file] [log] [blame]
#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;
}