stime32.c 126 B

12345678
  1. #define _GNU_SOURCE
  2. #include "time32.h"
  3. #include <time.h>
  4. int __stime32(const time32_t *t)
  5. {
  6. return stime(&(time_t){*t});
  7. }