diff options
author | SVN Migration <svn@php.net> | 2000-06-29 13:34:59 +0000 |
---|---|---|
committer | SVN Migration <svn@php.net> | 2000-06-29 13:34:59 +0000 |
commit | d26abbcdc9b2decf18e5c8b33ae5be8a08d0d368 (patch) | |
tree | fe3bd08d30845a9510557728022bfa006a62cc53 /Zend/acconfig.h | |
parent | 01a8f4606ea99e9be92dbd4a27c69330786c7a8c (diff) | |
download | php-git-php-4.0.1pl1.tar.gz |
This commit was manufactured by cvs2svn to create tag 'php_4_0_1pl1'.php-4.0.1pl1
Diffstat (limited to 'Zend/acconfig.h')
-rw-r--r-- | Zend/acconfig.h | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/Zend/acconfig.h b/Zend/acconfig.h deleted file mode 100644 index 9b3153daf1..0000000000 --- a/Zend/acconfig.h +++ /dev/null @@ -1,57 +0,0 @@ -#define ZEND_API -#define ZEND_DLEXPORT - -@TOP@ - -/* these are defined by automake */ -#undef PACKAGE -#undef VERSION - -#undef uint -#undef ulong - -/* Define if you want to enable memory limit support */ -#define MEMORY_LIMIT 0 - -@BOTTOM@ - -#ifdef HAVE_STDLIB_H -# include <stdlib.h> -#endif - -#ifdef HAVE_SYS_TYPES_H -# include <sys/types.h> -#endif - -#ifdef HAVE_STRING_H -# include <string.h> -#else -# include <strings.h> -#endif - -#if ZEND_BROKEN_SPRINTF -int zend_sprintf(char *buffer, const char *format, ...); -#else -# define zend_sprintf sprintf -#endif - -#ifdef HAVE_FINITE -#define zend_finite(a) finite(a) -#elif defined(HAVE_ISFINITE) -#define zend_finite(a) isfinite(a) -#elif defined(HAVE_ISNAN) && defined(HAVE_ISINF) -#define zend_finite(a) (isnan(a) ? 0 : isinf(a) ? 0 : 1) -#elif defined(HAVE_ISNAN) -#define zend_finite(a) (isnan(a) ? 0 : 1) -#elif defined(HAVE_ISINF) -#define zend_finite(a) (isinf(a) ? 0 : 1) -#else -#define zend_finite(a) (1) -#endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - */ |