diff options
author | SVN Migration <svn@php.net> | 2000-10-02 15:20:41 +0000 |
---|---|---|
committer | SVN Migration <svn@php.net> | 2000-10-02 15:20:41 +0000 |
commit | 1208b0fe781b02073418267f04c90cca3201a49f (patch) | |
tree | 9c29dc615a25677ab5409c6ad79ccde7a8a671e2 /Zend/zend_gcc_inline.c | |
parent | 5819b6d4a6bdcb6cd33431761d7d2430fed9a7ce (diff) | |
download | php-git-php-4.0.3RC1.tar.gz |
This commit was manufactured by cvs2svn to create tag 'php_4_0_3RC1'.php-4.0.3RC1
Diffstat (limited to 'Zend/zend_gcc_inline.c')
-rw-r--r-- | Zend/zend_gcc_inline.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Zend/zend_gcc_inline.c b/Zend/zend_gcc_inline.c new file mode 100644 index 0000000000..439cd17b29 --- /dev/null +++ b/Zend/zend_gcc_inline.c @@ -0,0 +1,17 @@ + +/* + * 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 |