php-src/Zend/acconfig.h

44 lines
611 B
C
Raw Normal View History

#define ZEND_API
#define ZEND_DLEXPORT
@TOP@
1999-04-19 20:10:26 +00:00
/* these are defined by automake */
#undef PACKAGE
#undef VERSION
1999-04-07 18:10:10 +00:00
#undef uint
#undef ulong
/* Define if you want to enable memory limit support */
#define MEMORY_LIMIT 0
@BOTTOM@
1999-09-07 09:02:41 +00:00
#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
/*
* Local variables:
* tab-width: 4
* c-basic-offset: 4
* End:
*/