master
 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. */
 7struct rusage {
 8    struct timeval ru_utime;
 9    struct timeval ru_stime;
10};
11
12#endif