summaryrefslogtreecommitdiff
path: root/compat/time32/stime32.c
diff options
context:
space:
mode:
Diffstat (limited to 'compat/time32/stime32.c')
-rw-r--r--compat/time32/stime32.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/compat/time32/stime32.c b/compat/time32/stime32.c
new file mode 100644
index 00000000..cc76364d
--- /dev/null
+++ b/compat/time32/stime32.c
@@ -0,0 +1,8 @@
+#define _GNU_SOURCE
+#include "time32.h"
+#include <time.h>
+
+int __stime32(const time32_t *t)
+{
+ return stime(&(time_t){*t});
+}