blob: 9914097b2a6b3d02b96f2e798535dd6e91150e77 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef __wasilibc___struct_tms_h
#define __wasilibc___struct_tms_h
#include <__typedef_clock_t.h>
struct tms {
clock_t tms_utime;
clock_t tms_stime;
clock_t tms_cutime;
clock_t tms_cstime;
};
#endif
|