summaryrefslogtreecommitdiff
path: root/lib/libc/times/times.c
blob: bd850215cd2a3f364e78ffa52be8f76b2ca654d5 (plain)
1
2
3
4
5
6
7
#include <sys/times.h>
#include <syscall.h>

clock_t times(struct tms *buffer)
{
	return syscall(times, buffer);
}