diff options
author | Andy Dougherty <doughera@lafayette.edu> | 2010-09-23 11:55:28 -0400 |
---|---|---|
committer | Andy Dougherty <doughera@lafayette.edu> | 2010-09-23 11:55:28 -0400 |
commit | 81e44c99a10c05afb5c836d6cb175621e30a5b95 (patch) | |
tree | 3ebc739f961c83c22d7a47752e5f3c591555b80c /win32/config_H.ce | |
parent | e8936beceb8bb3ad22fdb9ba3cb1882675d04eed (diff) | |
download | perl-81e44c99a10c05afb5c836d6cb175621e30a5b95.tar.gz |
Update canned win32/config_H.* files with static inline values
to match the canned win32/config.* settings. For .bc and
.ce, we still have a plain 'static'. Better settings from
knowledgeable users about those platforms would be welcome.
Diffstat (limited to 'win32/config_H.ce')
-rw-r--r-- | win32/config_H.ce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/win32/config_H.ce b/win32/config_H.ce index 90d4f404e1..b417ea6ca5 100644 --- a/win32/config_H.ce +++ b/win32/config_H.ce @@ -2304,6 +2304,27 @@ #define Siglongjmp(buf,retval) longjmp((buf),(retval)) #endif +/* HAS_STATIC_INLINE: + * This symbol, if defined, indicates that the C compiler supports + * C99-style static inline. That is, the function can't be called + * from another translation unit. + */ +/* PERL_STATIC_INLINE: + * This symbol gives the best-guess incantation to use for static + * inline functions. If HAS_STATIC_INLINE is defined, this will + * give C99-style inline. If HAS_STATIC_INLINE is not defined, + * this will give a plain 'static'. It will always be defined + * to something that gives static linkage. + * Possibilities include + * static inline (c99) + * static __inline__ (gcc -ansi) + * static __inline (MSVC) + * static _inline (older MSVC) + * static (c89 compilers) + */ +/*#define HAS_STATIC_INLINE / **/ +#define PERL_STATIC_INLINE static /**/ + /* USE_SITECUSTOMIZE: * This symbol, if defined, indicates that sitecustomize should * be used. |