ref: c2b0f9aa695406f0319fa1cb98b7bb7b5dbd7e02
dir: /sys/include/ape/sys/times.h/
#ifndef __TIMES_H #define __TIMES_H #pragma lib "/$M/lib/ape/libap.a" #ifndef _CLOCK_T #define _CLOCK_T typedef long clock_t; #endif struct tms { clock_t tms_utime; clock_t tms_stime; clock_t tms_cutime; clock_t tms_cstime; }; #ifdef __cplusplus extern "C" { #endif clock_t times(struct tms *); #ifdef __cplusplus } #endif #endif