blob: cc76364d3b91e1e8c6f9718a6a90667c3d4934a9 [file] [log] [blame]
#define _GNU_SOURCE
#include "time32.h"
#include <time.h>
int __stime32(const time32_t *t)
{
return stime(&(time_t){*t});
}