mirror of
https://git.proxmox.com/git/wasi-libc
synced 2025-08-19 06:06:31 +00:00

This incoporates pieces from musl-libc, cloudlibc, cloudabi, libpreopen, and dlmalloc, as well as a significant amount of new code.
13 lines
227 B
C
13 lines
227 B
C
#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
|