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

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