1
0
mirror of https://github.com/php/php-src.git synced 2026-03-28 10:12:18 +01:00

fix build

This commit is contained in:
Antony Dovgal
2004-11-03 06:22:08 +00:00
parent e16f0c6996
commit b5c1040240

View File

@@ -1734,13 +1734,11 @@ PHP_FUNCTION(sleep)
convert_to_long_ex(num);
#ifdef PHP_SLEEP_NON_VOID
RETURN_LONG(
RETURN_LONG(php_sleep(Z_LVAL_PP(num)));
#else
php_sleep(Z_LVAL_PP(num));
#endif
php_sleep(Z_LVAL_PP(num))
#ifdef PHP_SLEEP_NON_VOID
)
#endif
;
}
/* }}} */