diff options
author | Sascha Schumann <sas@php.net> | 2000-06-14 07:06:33 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2000-06-14 07:06:33 +0000 |
commit | 35f43ad274c504b68ff17d644fd2d16a3feb4a49 (patch) | |
tree | 71584496a80d1dc162252f30fcaa0dfacff24b1f /Zend/zend_gcc_inline.c | |
parent | e4e7047e4a9e2210b19b35d09a207e1b2d9dd193 (diff) | |
download | php-git-35f43ad274c504b68ff17d644fd2d16a3feb4a49.tar.gz |
Rename C0x-inline to C9x-inline, and frame preprocessor directives in
zend_gcc_inline.c with #ifndef C9X_INLINE_SEMANTICS..#endif.
Diffstat (limited to 'Zend/zend_gcc_inline.c')
-rw-r--r-- | Zend/zend_gcc_inline.c | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/Zend/zend_gcc_inline.c b/Zend/zend_gcc_inline.c index 6c92a1fbf1..439cd17b29 100644 --- a/Zend/zend_gcc_inline.c +++ b/Zend/zend_gcc_inline.c @@ -1,7 +1,17 @@ -#define C0X_INLINE_SEMANTICS +/* + * If C9X_INLINE_SEMANTICS is already defined here, + * we assume the user does not want GCC inline semantics, + * but compiles this file always. + */ + +#ifndef C9X_INLINE_SEMANTICS + +#define C9X_INLINE_SEMANTICS #include "zend.h" #include "zend_execute.h" #include "zend_operators.h" + +#endif |