#ifndef _SYS_TIMES_H #define _SYS_TIMES_H /* Copyright © 2004, The AROS Development Team. All rights reserved. $Id: times.h 21881 2004-06-30 00:24:14Z chodorowski $ */ #include struct tms { clock_t tms_utime; /* User time */ clock_t tms_stime; /* System time */ clock_t tms_cutime; /* User time of children */ clock_t tms_cstime; /* System time of children */ }; __BEGIN_DECLS clock_t times(struct tms *buffer); __END_DECLS #endif /* _SYS_TIMES_H */