Commit /bin/cc.exe (a hardlink of /bin/gcc.exe)
[msysgit.git] / include / sys / times.h
blob9375cb19d5933dc3d7e7f14a4b4952744627580b
1 #ifndef _SYS_TIMES_H
2 #ifdef __cplusplus
3 extern "C" {
4 #endif
5 #define _SYS_TIMES_H
7 #include <_ansi.h>
8 #include <machine/types.h>
10 #ifndef __clock_t_defined
11 typedef _CLOCK_T_ clock_t;
12 #define __clock_t_defined
13 #endif
15 /* Get Process Times, P1003.1b-1993, p. 92 */
16 struct tms {
17 clock_t tms_utime; /* user time */
18 clock_t tms_stime; /* system time */
19 clock_t tms_cutime; /* user time, children */
20 clock_t tms_cstime; /* system time, children */
23 clock_t _EXFUN(times,(struct tms *));
25 #ifdef __cplusplus
27 #endif
28 #endif /* !_SYS_TIMES_H */