]> git.proxmox.com Git - wasi-libc.git/blob - libc-bottom-half/headers/public/__struct_rusage.h
__wasi_thread_spawn: stop truncating the return value (#353)
[wasi-libc.git] / libc-bottom-half / headers / public / __struct_rusage.h
1 #ifndef __wasilibc___struct_rusage_h
2 #define __wasilibc___struct_rusage_h
3
4 #include <__struct_timeval.h>
5
6 /* TODO: Add more features here. */
7 struct rusage {
8 struct timeval ru_utime;
9 struct timeval ru_stime;
10 };
11
12 #endif