blob: 6c6cf3291e0775ef040c640c73f64069ccd36c22 (
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)
*/
|