blob: 11c3cb243895e83d4df8cfe22b1190f0ddff775e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include <sys/times.h>
#include "syscall.h"
clock_t times(struct tms *tms)
{
return __syscall(SYS_times, tms);
}
#ifdef TEST
int
main(void) {
return 0;
}
#endif
|