From d74c7008bbdb17db6d33eb8bcf8081a14385bdfb Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Wed, 31 Jan 2024 01:32:28 -0500 Subject: remove more cruft, update dependencies --- src/sys/times/clock_t.ref | 3 --- src/sys/times/struct_tms.h | 12 ------------ src/sys/times/times.c | 12 ------------ 3 files changed, 27 deletions(-) delete mode 100644 src/sys/times/clock_t.ref delete mode 100644 src/sys/times/struct_tms.h delete mode 100644 src/sys/times/times.c (limited to 'src/sys/times') 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 -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 - -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 -#include -#include "_syscall.h" - -clock_t times(struct tms *buffer) -{ - SYSCALL(times, clock_t, -1, buffer, 0, 0, 0, 0, 0); -} - -/* -POSIX(1) -*/ -- cgit v1.2.1