summaryrefslogtreecommitdiff
path: root/config_h.SH
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2000-03-05 00:51:20 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2000-03-05 00:51:20 +0000
commit3240d4034f8fa9e108469d9d2c0cc0b8d16f6a8c (patch)
tree26cd00b4304abd0a87a35629d0dda93f1a7464ce /config_h.SH
parente0e392b4f0557a1b5169360029c8df574cd47ff2 (diff)
downloadperl-3240d4034f8fa9e108469d9d2c0cc0b8d16f6a8c.tar.gz
Implement #5525 in metaconfig.
p4raw-id: //depot/cfgperl@5531
Diffstat (limited to 'config_h.SH')
-rw-r--r--config_h.SH10
1 files changed, 5 insertions, 5 deletions
diff --git a/config_h.SH b/config_h.SH
index 40b5b84413..30d9186b40 100644
--- a/config_h.SH
+++ b/config_h.SH
@@ -1209,14 +1209,14 @@ sed <<!GROK!THIS! >config.h -e 's!^#undef\(.*/\)\*!/\*#define\1 \*!' -e 's!^#un-
/* If you can get stringification with catify, tell me how! */
#endif
#if $cpp_stuff == 42
-# define PeRl_CaTiFy(a,b) a ## b
+# define PeRl_CaTiFy(a, b) a ## b
# define PeRl_StGiFy(a) #a
- /* the additional level of indirection enables these macros to be
- * used as arguments to other macros. See K&R 2nd ed., page 231. */
-# define CAT2(a,b) PeRl_CaTiFy(a,b)
+/* the additional level of indirection enables these macros to be
+ * used as arguments to other macros. See K&R 2nd ed., page 231. */
+# define CAT2(a,b) Perl_CaTiFy(a,b)
+# define StGiFy(a) PeRl_StGiFy(a)
# define STRINGIFY(a) PeRl_StGiFy(a)
#endif
-
#if $cpp_stuff != 1 && $cpp_stuff != 42
#include "Bletch: How does this C preprocessor catenate tokens?"
#endif