diff options
author | SVN Migration <svn@php.net> | 2002-12-13 02:20:34 +0000 |
---|---|---|
committer | SVN Migration <svn@php.net> | 2002-12-13 02:20:34 +0000 |
commit | ae52101b3b490dd523a9504d338ee6efbc54892c (patch) | |
tree | c1bf723d69d9e1bc71e87067b0f8aa84dd370750 /ext/xml/expat/internal.h | |
parent | 854b9b9ac1c0741b41999918bf31763bc926c3d6 (diff) | |
download | php-git-RELEASE_1_0b3.tar.gz |
This commit was manufactured by cvs2svn to create tag 'RELEASE_1_0b3'.RELEASE_1_0b3
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 |