summaryrefslogtreecommitdiff
path: root/src/time/times.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/time/times.c')
-rw-r--r--src/time/times.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/time/times.c b/src/time/times.c
new file mode 100644
index 00000000..e9b5a823
--- /dev/null
+++ b/src/time/times.c
@@ -0,0 +1,7 @@
+#include <sys/times.h>
+#include "syscall.h"
+
+clock_t times(struct tms *tms)
+{
+ return syscall1(__NR_times, (long)&tms);
+}