clock_gettime.c 143 字节
Newer Older
R
Rich Felker 已提交
1 2 3 4 5
#include <time.h>
#include "syscall.h"

int clock_gettime(clockid_t clk, struct timespec *ts)
{
6
	return syscall(SYS_clock_gettime, clk, ts);
R
Rich Felker 已提交
7
}