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