summaryrefslogtreecommitdiff
path: root/src/time/clock_getres.c
blob: 36a0d695b02e29b1bbfd162061cb113c8550bfc2 (plain) (blame)
1
2
3
4
5
6
7
#include <time.h>
#include "syscall.h"

int clock_getres(clockid_t clk, struct timespec *ts)
{
	return syscall(SYS_clock_getres, clk, ts);
}