Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
musl
/
2cee45762a1e69444cd711a1a8112a401540081a
/
.
/
include
/
sys
/
times.h
blob: aca743d3e4e73276b0530f43b384ce71f26e3edc [
file
] [
log
] [
blame
]
#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