summaryrefslogtreecommitdiff
path: root/src/sysdeps/trysettimeofday.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/sysdeps/trysettimeofday.c')
-rw-r--r--src/sysdeps/trysettimeofday.c27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/sysdeps/trysettimeofday.c b/src/sysdeps/trysettimeofday.c
new file mode 100644
index 0000000..05ae3c4
--- /dev/null
+++ b/src/sysdeps/trysettimeofday.c
@@ -0,0 +1,27 @@
+/* ISC license. */
+
+#undef _POSIX_C_SOURCE
+#undef _XOPEN_SOURCE
+
+#ifndef _BSD_SOURCE
+#define _BSD_SOURCE
+#endif
+
+#ifndef _NETBSD_SOURCE
+#define _NETBSD_SOURCE
+#endif
+
+#ifndef __EXTENSIONS__
+#define __EXTENSIONS__
+#endif
+
+#include <sys/types.h>
+#include <sys/time.h>
+
+int main (void)
+{
+ struct timeval tv ;
+ gettimeofday(&tv, 0) ;
+ settimeofday(&tv, 0) ;
+ return 0 ;
+}