summaryrefslogtreecommitdiff
path: root/src/sys/times/times.c
blob: f677d3b41a9a916a3257cdbbfa97b98c5b68d193 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "time.h"
#include <sys/times.h>
#include "_syscall.h"

clock_t times(struct tms *buffer)
{
	SYSCALL(times, clock_t, -1, buffer, 0, 0, 0, 0, 0);
}

/*
POSIX(1)
*/