summaryrefslogtreecommitdiff
path: root/src/linux/stime.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/linux/stime.c')
-rw-r--r--src/linux/stime.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/linux/stime.c b/src/linux/stime.c
new file mode 100644
index 00000000..ec3ba821
--- /dev/null
+++ b/src/linux/stime.c
@@ -0,0 +1,7 @@
+#include <sys/time.h>
+
+int stime(time_t *t)
+{
+ struct timeval tv = { .tv_sec = *t, .tv_usec = 0 };
+ return settimeofday(&tv, (void *)0);
+}