blob: 145aa24e1cd93f92620469eb8efb6e8fbdbc7699 (
plain)
1
2
3
4
5
6
7
8
|
#include <time.h>
typedef struct SYS_CLOCK_GETTIME_PARAMS {
clockid_t clk;
struct timespec *ts;
} __attribute__((packed)) SYS_CLOCK_GETTIME_PARAMS;
int syscall_clock_gettime(SYS_CLOCK_GETTIME_PARAMS *args);
|