avoid busting bash's stack with a too big if body in configure
[m6w6/ext-psi] / m4 / sys_times.m4
index cbaa6feb13427676773ef389a9cafe22471cff0f..9f9da565d6cc8e190bbcc3118083bdf0791bad32 100644 (file)
@@ -1,12 +1,12 @@
-AC_DEFUN(PSI_CHECK_SYS_TIMES, [
+PSI_CHECK_SYS_TIMES() {
        AC_CHECK_HEADERS(sys/times.h)
-       
+
        PSI_STRUCT(struct tms, [
                clock_t tms_utime,
                clock_t tms_stime,
                clock_t tms_cutime,
                clock_t tms_cstime]
        )
-       
+
        PSI_DECL(clock_t times, [(struct tms *buf)])
-])
+}