Don't try to setup and use X11 shared memory if
[tangerine.git] / compiler / clib / include / sys / times.h
blob5a9450c3ebf073143d7942641c669f31160ed4d7
1 #ifndef _SYS_TIMES_H
2 #define _SYS_TIMES_H
4 /*
5 Copyright © 2004, The AROS Development Team. All rights reserved.
6 $Id$
7 */
9 #include <sys/types.h>
11 struct tms
13 clock_t tms_utime; /* User time */
14 clock_t tms_stime; /* System time */
15 clock_t tms_cutime; /* User time of children */
16 clock_t tms_cstime; /* System time of children */
19 __BEGIN_DECLS
20 clock_t times(struct tms *buffer);
21 __END_DECLS
23 #endif /* _SYS_TIMES_H */