lang-bootstrap/05/musl-0.6.0/include/sys/times.h
2022-02-20 13:18:21 -08:00

17 lines
231 B
C

#ifndef _SYS_TIMES_H
#define _SYS_TIMES_H
#define __NEED_clock_t
#include <bits/alltypes.h>
struct tms
{
clock_t tms_utime;
clock_t tms_stime;
clock_t tms_cutime;
clock_t tms_cstime;
};
clock_t times (struct tms *);
#endif