expand let marshal's parameters
[m6w6/ext-psi] / m4 / time.m4
index 3d50e6935d3079343697ca844b9d826203e4ec4d..e1b4011c7910bf30c11f34fafb29c6809939c3d5 100644 (file)
@@ -1,5 +1,5 @@
-AC_DEFUN(PSI_CHECK_TIME, [
-       AC_CHECK_HEADERS(time.h)
+PSI_CHECK_TIME() {
+       PSI_CONFIG_POSIX(time, time.h)
 
        PSI_CONST(CLOCKS_PER_SEC, int)
        PSI_CONST(CLOCK_MONOTONIC, int)
@@ -54,6 +54,10 @@ AC_DEFUN(PSI_CHECK_TIME, [
        PSI_DECL(int timer_delete, [(timer_t t)])
        PSI_DECL(int timer_getoverrun, [(timer_t t)])
        PSI_DECL(int timer_gettime, [(timer_t t, struct itimerspec *ts)])
-       PSI_DECL(int timer_settime, [(timer_t t, struct itimerspec *value, struct itimerspec *ovalue)])
+       PSI_DECL(int timer_settime, [(timer_t t, int flags, struct itimerspec *value, struct itimerspec *ovalue)])
        PSI_DECL(void tzset, [()])
-])
+
+       PSI_EXTVAR(int daylight)
+       PSI_EXTVAR(long timezone)
+       PSI_EXTVAR(char **tzname)
+}