1 #include <sys/times.h> 2 #include "syscall.h" 3 times(struct tms * tms)4 clock_t times(struct tms *tms) 5 { 6 return syscall(SYS_times, tms); 7 } 8