Sign in
mojo
/
mojo
/
de6c20aad64d53a7061c10e724e9924cfec679f6
/
.
/
fusl
/
src
/
time
/
times.c
blob: b6f49ccd6bc9d715bf14c3e9d65db8c51137f3b6 [
file
] [
log
] [
blame
]
#include
<sys/times.h>
#include
"syscall.h"
clock_t
times
(
struct
tms
*
tms
)
{
return
__syscall
(
SYS_times
,
tms
);
}