diff options
author | Nick Ing-Simmons <nik@tiuk.ti.com> | 1997-12-01 04:01:57 +0000 |
---|---|---|
committer | Nick Ing-Simmons <nik@tiuk.ti.com> | 1997-12-01 04:01:57 +0000 |
commit | 31fb120917c4f65d2069bd7d23b1876b523066fe (patch) | |
tree | ed319969aa1ff19d40a9be89a87a5129336cf174 /perl.h | |
parent | 22239a37ce131e4f5341aee571f08aced283e16a (diff) | |
download | perl-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.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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"); |