From 57e2ef89e4f5d2fef800e000fb4c1ff8f98bd188 Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Fri, 9 Jan 2004 23:37:29 +0000 Subject: support for building asm in the unix buildsys. Also, when ZEND_ACCONFIG_H_NO_C_PROTOS is defined, omit the C prototypes from the configuration header so that it can be included into asm files. --- Zend/acconfig.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Zend/acconfig.h') diff --git a/Zend/acconfig.h b/Zend/acconfig.h index 9538c34b73..b58f8b7a6c 100644 --- a/Zend/acconfig.h +++ b/Zend/acconfig.h @@ -37,6 +37,8 @@ @BOTTOM@ #endif +#ifndef ZEND_ACCONFIG_H_NO_C_PROTOS + #ifdef HAVE_STDLIB_H # include #endif @@ -96,6 +98,8 @@ int zend_sprintf(char *buffer, const char *format, ...); #define zend_finite(a) (zend_isnan(a) ? 0 : zend_isinf(a) ? 0 : 1) #endif +#endif /* ifndef ZEND_ACCONFIG_H_NO_C_PROTOS */ + /* * Local variables: * tab-width: 4 -- cgit v1.2.1