summaryrefslogtreecommitdiff
path: root/src/sys/times
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2024-01-31 01:32:28 -0500
committerJakob Kaivo <jkk@ung.org>2024-01-31 01:32:28 -0500
commitd74c7008bbdb17db6d33eb8bcf8081a14385bdfb (patch)
tree053b2f844e828422de915167575e59c3e2205a83 /src/sys/times
parent5fd6f055390692694b0090fdf7bdd5ebbb1976de (diff)
remove more cruft, update dependencies
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)
-*/