From fc00c656c96528112d05cf0edf8631bd5eaea446 Mon Sep 17 00:00:00 2001 From: Kacper Date: Sun, 7 Dec 2025 20:10:31 +0100 Subject: Add build system scaffolding and libc headers --- include/sys/times.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 include/sys/times.h (limited to 'include/sys/times.h') diff --git a/include/sys/times.h b/include/sys/times.h new file mode 100644 index 00000000..4cc0e184 --- /dev/null +++ b/include/sys/times.h @@ -0,0 +1,15 @@ +#ifndef __SYS_TIMES_H +#define __SYS_TIMES_H + +typedef __INT64_TYPE__ clock_t; + +struct tms { + clock_t tms_utime; + clock_t tms_stime; + clock_t tms_cutime; + clock_t tms_cstime; +}; + +clock_t times(struct tms *); + +#endif -- cgit v1.2.3