diff options
Diffstat (limited to 'sysutils/clockspeed/files/tryclock_gettime.c')
| -rw-r--r-- | sysutils/clockspeed/files/tryclock_gettime.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sysutils/clockspeed/files/tryclock_gettime.c b/sysutils/clockspeed/files/tryclock_gettime.c new file mode 100644 index 000000000000..0e5bd1c445c5 --- /dev/null +++ b/sysutils/clockspeed/files/tryclock_gettime.c @@ -0,0 +1,8 @@ +#include <sys/time.h> + +main() +{ + struct timespec ts; + + (void) clock_gettime(CLOCK_REALTIME, &ts); +} |
