master
1#ifndef __wasilibc___struct_tms_h
2#define __wasilibc___struct_tms_h
3
4#include <__typedef_clock_t.h>
5
6struct tms {
7 clock_t tms_utime;
8 clock_t tms_stime;
9 clock_t tms_cutime;
10 clock_t tms_cstime;
11};
12
13#endif