diff options
author | Wez Furlong <wez@php.net> | 2004-01-09 23:37:29 +0000 |
---|---|---|
committer | Wez Furlong <wez@php.net> | 2004-01-09 23:37:29 +0000 |
commit | 57e2ef89e4f5d2fef800e000fb4c1ff8f98bd188 (patch) | |
tree | f2978cba7629bd2485f955c185c3f7af92499747 /Zend/acconfig.h | |
parent | 686281d087adcc89ba088e9780a2fca8885a2307 (diff) | |
download | php-git-57e2ef89e4f5d2fef800e000fb4c1ff8f98bd188.tar.gz |
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.
Diffstat (limited to 'Zend/acconfig.h')
-rw-r--r-- | Zend/acconfig.h | 4 |
1 files changed, 4 insertions, 0 deletions
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 <stdlib.h> #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 |