summaryrefslogtreecommitdiff
path: root/ext/xml/expat/internal.h
diff options
context:
space:
mode:
authorSVN Migration <svn@php.net>2002-11-26 01:38:49 +0000
committerSVN Migration <svn@php.net>2002-11-26 01:38:49 +0000
commit83fc7fc84fc2b439da0cc4e08cb511d9753dbcca (patch)
treee884842697b6fca255c96f627a4dbd17f0a7d97a /ext/xml/expat/internal.h
parent693204265e3970c58932aef21fb4d25e3f1ea1fd (diff)
downloadphp-git-RELEASE_1_0b2.tar.gz
This commit was manufactured by cvs2svn to create tag 'RELEASE_1_0b2'.RELEASE_1_0b2
Diffstat (limited to 'ext/xml/expat/internal.h')
-rw-r--r--ext/xml/expat/internal.h46
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