avoid busting bash's stack with a too big if body in configure
[m6w6/ext-psi] / m4 / sys_times.m4
1 PSI_CHECK_SYS_TIMES() {
2 AC_CHECK_HEADERS(sys/times.h)
3
4 PSI_STRUCT(struct tms, [
5 clock_t tms_utime,
6 clock_t tms_stime,
7 clock_t tms_cutime,
8 clock_t tms_cstime]
9 )
10
11 PSI_DECL(clock_t times, [(struct tms *buf)])
12 }