summaryrefslogtreecommitdiffstats
path: root/libc-bottom-half/headers/public/__struct_tms.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--libc-bottom-half/headers/public/__struct_tms.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/libc-bottom-half/headers/public/__struct_tms.h b/libc-bottom-half/headers/public/__struct_tms.h
new file mode 100644
index 0000000..9914097
--- /dev/null
+++ b/libc-bottom-half/headers/public/__struct_tms.h
@@ -0,0 +1,13 @@
+#ifndef __wasilibc___struct_tms_h
+#define __wasilibc___struct_tms_h
+
+#include <__typedef_clock_t.h>
+
+struct tms {
+ clock_t tms_utime;
+ clock_t tms_stime;
+ clock_t tms_cutime;
+ clock_t tms_cstime;
+};
+
+#endif