/* sys/times.h (emx+gcc) */

#if !defined (_SYS_TIMES_H)
#define _SYS_TIMES_H

#if defined (__cplusplus)
extern "C" {
#endif

#if !defined (_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;
};

long times (struct tms *buffer);

#if defined (__cplusplus)
}
#endif

#endif /* !defined (_SYS_TIMES_H) */
