diff options
author | SVN Migration <svn@php.net> | 2003-02-27 17:43:39 +0000 |
---|---|---|
committer | SVN Migration <svn@php.net> | 2003-02-27 17:43:39 +0000 |
commit | 078bcec0997ad0e07b720c43cc9e6d0e046a75ab (patch) | |
tree | 36cb0f6be2ef078fe3374de8c087b93ecf82f812 /ext/xml/expat/internal.h | |
parent | fd61f69077f6156ca71dde60ecfd9ed9765a02db (diff) | |
download | php-git-PHP-5.tar.gz |
This commit was manufactured by cvs2svn to create branch 'PHP_5'.PHP-5
Diffstat (limited to 'ext/xml/expat/internal.h')
-rw-r--r-- | ext/xml/expat/internal.h | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/ext/xml/expat/internal.h b/ext/xml/expat/internal.h deleted file mode 100644 index 6e2c5ed45f..0000000000 --- a/ext/xml/expat/internal.h +++ /dev/null @@ -1,46 +0,0 @@ -/* internal.h - - Internal definitions used by Expat. This is not needed to compile - client code. - - The following definitions are made: - - FASTCALL -- Used for most internal functions to specify that the - fastest possible calling convention be used. - - inline -- Used for selected internal functions for which inlining - may improve performance on some platforms. -*/ - -#if defined(__GNUC__) -/* Last minute instability reported with egcs on a RedHat Linux 7.3 - box; argh! -*/ -/* #define FASTCALL __attribute__((stdcall, regparm(3))) */ -#elif defined(WIN32) -/* XXX This seems to have an unexpected negative effect on Windows so - we'll disable it for now on that platform. It may be reconsidered - for a future release if it can be made more effective. -*/ -/* #define FASTCALL __fastcall */ -#endif - -#ifndef FASTCALL -#define FASTCALL -#endif - -#ifndef XML_MIN_SIZE -#if !defined(__cplusplus) && !defined(inline) -#ifdef __GNUC__ -#define inline __inline -#endif /* __GNUC__ */ -#endif -#endif /* XML_MIN_SIZE */ - -#ifdef __cplusplus -#define inline inline -#else -#ifndef inline -#define inline -#endif -#endif |