Make UEFI boot-platform build again
[haiku.git] / headers / posix / sys / times.h
blobbef2d83072ec69f66e9d8a763ed0de2e16a24e78
1 /*
2 * Copyright 2002-2012 Haiku, Inc. All Rights Reserved.
3 * Distributed under the terms of the MIT License.
4 */
5 #ifndef _SYS_TIMES_H
6 #define _SYS_TIMES_H
9 #include <time.h>
12 struct tms {
13 clock_t tms_utime; /* user CPU time */
14 clock_t tms_stime; /* system CPU time */
15 clock_t tms_cutime; /* user CPU time of terminated child processes */
16 clock_t tms_cstime; /* system CPU time of terminated child processes */
20 extern
21 #ifdef __cplusplus
22 "C"
23 #endif
24 clock_t times(struct tms *tms);
26 #endif /* _SYS_TIMES_H */