summaryrefslogtreecommitdiff
path: root/perl.h
diff options
context:
space:
mode:
authorNick Ing-Simmons <nik@tiuk.ti.com>1997-12-01 04:01:57 +0000
committerNick Ing-Simmons <nik@tiuk.ti.com>1997-12-01 04:01:57 +0000
commit31fb120917c4f65d2069bd7d23b1876b523066fe (patch)
treeed319969aa1ff19d40a9be89a87a5129336cf174 /perl.h
parent22239a37ce131e4f5341aee571f08aced283e16a (diff)
downloadperl-31fb120917c4f65d2069bd7d23b1876b523066fe.tar.gz
Builds and passes all tests with gcc on Win32 - phew!
p4raw-id: //depot/ansiperl@342
Diffstat (limited to 'perl.h')
-rw-r--r--perl.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/perl.h b/perl.h
index 09d64af3e6..3d8e423f02 100644
--- a/perl.h
+++ b/perl.h
@@ -1394,11 +1394,11 @@ EXT short * ds;
EXT char * dc;
/* handy constants */
-EXTCONST char * Yes INIT("1");
-EXTCONST char * No INIT("");
-EXTCONST char * hexdigit INIT("0123456789abcdef0123456789ABCDEFx");
-EXTCONST char * patleave INIT("\\.^$@dDwWsSbB+*?|()-nrtfeaxc0123456789[{]}");
-EXTCONST char * vert INIT("|");
+#define Perl_Yes "1"
+#define Perl_No ""
+#define Perl_hexdigit "0123456789abcdef0123456789ABCDEFx"
+#define Perl_patleave "\\.^$@dDwWsSbB+*?|()-nrtfeaxc0123456789[{]}"
+#define Perl_vert "|"
EXTCONST char warn_uninit[]
INIT("Use of uninitialized value");