summaryrefslogtreecommitdiff
path: root/NetWare
diff options
context:
space:
mode:
authorAndy Dougherty <doughera@lafayette.edu>2010-09-23 11:59:47 -0400
committerAndy Dougherty <doughera@lafayette.edu>2010-09-23 11:59:47 -0400
commit55ce5d5f72ff3e217c8808026353432ca1a7deb0 (patch)
tree8694084415245625b004b5899b8f2a997978a442 /NetWare
parent81e44c99a10c05afb5c836d6cb175621e30a5b95 (diff)
downloadperl-55ce5d5f72ff3e217c8808026353432ca1a7deb0.tar.gz
Add static inline values to canned Netware/config_H.wc file.
Diffstat (limited to 'NetWare')
-rw-r--r--NetWare/config_H.wc21
1 files changed, 21 insertions, 0 deletions
diff --git a/NetWare/config_H.wc b/NetWare/config_H.wc
index d8712bd90a..c1a3b13f9c 100644
--- a/NetWare/config_H.wc
+++ b/NetWare/config_H.wc
@@ -2008,6 +2008,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 /**/
+
/* HAS_SOCKET:
* This symbol, if defined, indicates that the BSD socket interface is
* supported.