From 3534b428629be185e096be99e3bd5fdfe32d5544 Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Thu, 18 Sep 2014 18:55:44 +0000 Subject: initial commit with rc for skalibs-2.0.0.0 --- src/sysdeps/trysettimeofday.c | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 src/sysdeps/trysettimeofday.c (limited to 'src/sysdeps/trysettimeofday.c') 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 +#include + +int main (void) +{ + struct timeval tv ; + gettimeofday(&tv, 0) ; + settimeofday(&tv, 0) ; + return 0 ; +} -- cgit v1.2.3