toaruos/libc/time/times.c

12 lines
210 B
C

#include <sys/times.h>
#include <errno.h>
#include <syscall.h>
#include <syscall_nums.h>
DEFN_SYSCALL1(times, SYS_TIMES, struct tms *);
clock_t times(struct tms * buf) {
__sets_errno(syscall_times(buf));
}