2 * Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
27 #include <libc/machine/types.h>
32 #ifndef __clock_t_defined
33 typedef _CLOCK_T_ clock_t;
34 #define __clock_t_defined
41 clock_t tms_utime; /* user time */
42 clock_t tms_stime; /* system time */
43 clock_t tms_cutime; /* user time, children */
44 clock_t tms_cstime; /* system time, children */
50 extern clock_t times(struct tms *);
55 #endif /* !_SYS_TIMES_H */