From 0df5a8fa0361e06a46240689d01665c1c59ef7c4 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Wed, 31 Jan 2024 00:04:19 -0500 Subject: remove last vestiges of _assert.h (now _safety.h) --- src/sys/times/struct_tms.c | 12 ------------ src/sys/times/struct_tms.h | 12 ++++++++++++ 2 files changed, 12 insertions(+), 12 deletions(-) delete mode 100644 src/sys/times/struct_tms.c create mode 100644 src/sys/times/struct_tms.h (limited to 'src/sys/times') diff --git a/src/sys/times/struct_tms.c b/src/sys/times/struct_tms.c deleted file mode 100644 index 8e70958b..00000000 --- a/src/sys/times/struct_tms.c +++ /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/struct_tms.h b/src/sys/times/struct_tms.h new file mode 100644 index 00000000..8e70958b --- /dev/null +++ b/src/sys/times/struct_tms.h @@ -0,0 +1,12 @@ +#include + +struct tms { + clock_t tms_utime; + clock_t tms_stime; + clock_t tms_cutime; + clock_t tms_cstime; +}; + +/* +POSIX(1) +*/ -- cgit v1.2.1