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.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/sys/times/struct_tms.h (limited to 'src/sys/times/struct_tms.h') 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