blob: 7411af706d6f420e091ae16ac23634d78f191e71 (
plain)
1
2
3
4
5
6
7
8
9
|
#include <sys/times.h>
#include <errno.h>
#include <Kernel/Syscall.h>
clock_t times(struct tms* buf)
{
int rc = syscall(SC_times, buf);
__RETURN_WITH_ERRNO(rc, rc, (clock_t)-1);
}
|