]> git.proxmox.com Git - wasi-libc.git/blob - libc-bottom-half/headers/public/__struct_tms.h
__wasi_thread_spawn: stop truncating the return value (#353)
[wasi-libc.git] / libc-bottom-half / headers / public / __struct_tms.h
1 #ifndef __wasilibc___struct_tms_h
2 #define __wasilibc___struct_tms_h
3
4 #include <__typedef_clock_t.h>
5
6 struct tms {
7 clock_t tms_utime;
8 clock_t tms_stime;
9 clock_t tms_cutime;
10 clock_t tms_cstime;
11 };
12
13 #endif