mirror of
https://github.com/tmate-io/tmate.git
synced 2026-07-21 10:18:36 +00:00
9 lines
193 B
C
9 lines
193 B
C
#define _GNU_SOURCE
|
|
#include <time.h>
|
|
#include <unistd.h>
|
|
#include <sys/syscall.h>
|
|
|
|
int clock_gettime(clockid_t clk_id, struct timespec *tp)
|
|
{
|
|
return syscall(SYS_clock_gettime, clk_id, tp);
|
|
}
|