blob: 69fe2fef3481a6a11154bdc7dd1ae9dba476295a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef __wasilibc___struct_rusage_h
#define __wasilibc___struct_rusage_h
#include <__struct_timeval.h>
/* TODO: Add more features here. */
struct rusage {
struct timeval ru_utime;
struct timeval ru_stime;
};
#endif
|