summaryrefslogtreecommitdiff
path: root/src/sys/times
diff options
context:
space:
mode:
Diffstat (limited to 'src/sys/times')
-rw-r--r--src/sys/times/clock_t.ref3
-rw-r--r--src/sys/times/struct_tms.h12
-rw-r--r--src/sys/times/times.c12
3 files changed, 0 insertions, 27 deletions
diff --git a/src/sys/times/clock_t.ref b/src/sys/times/clock_t.ref
deleted file mode 100644
index 1afe7814..00000000
--- a/src/sys/times/clock_t.ref
+++ /dev/null
@@ -1,3 +0,0 @@
-#include <sys/times.h>
-REFERENCE(time/clock_t.c)
-POSIX(1)
diff --git a/src/sys/times/struct_tms.h b/src/sys/times/struct_tms.h
deleted file mode 100644
index 8e70958b..00000000
--- a/src/sys/times/struct_tms.h
+++ /dev/null
@@ -1,12 +0,0 @@
-#include <sys/times.h>
-
-struct tms {
- clock_t tms_utime;
- clock_t tms_stime;
- clock_t tms_cutime;
- clock_t tms_cstime;
-};
-
-/*
-POSIX(1)
-*/
diff --git a/src/sys/times/times.c b/src/sys/times/times.c
deleted file mode 100644
index 6c6cf329..00000000
--- a/src/sys/times/times.c
+++ /dev/null
@@ -1,12 +0,0 @@
-#include <time.h>
-#include <sys/times.h>
-#include "_syscall.h"
-
-clock_t times(struct tms *buffer)
-{
- SYSCALL(times, clock_t, -1, buffer, 0, 0, 0, 0, 0);
-}
-
-/*
-POSIX(1)
-*/