Sign in
mojo
/
mojo-tools
/
7d579155cc597aa3befcbfad66eef54bda06b57c
/
.
/
fusl
/
src
/
time
/
times.c
blob: b6f49ccd6bc9d715bf14c3e9d65db8c51137f3b6 [
file
] [
log
] [
blame
]
Viet-Trung Luu
96b05c1
2016-01-11 11:26:36 -0800
[
diff
] [
blame
]
1
#include
<sys/times.h>
2
#include
"syscall.h"
3
George Kulakowski
17e3b04
2016-02-18 15:59:50 -0800
[
diff
] [
blame
]
4
clock_t
times
(
struct
tms
*
tms
)
{
5
return
__syscall
(
SYS_times
,
tms
);
Viet-Trung Luu
96b05c1
2016-01-11 11:26:36 -0800
[
diff
] [
blame
]
6
}