summaryrefslogtreecommitdiff
path: root/perlvars.h
diff options
context:
space:
mode:
authorMalcolm Beattie <mbeattie@sable.ox.ac.uk>1997-12-10 18:36:26 +0000
committerMalcolm Beattie <mbeattie@sable.ox.ac.uk>1997-12-10 18:36:26 +0000
commit3fe6f2dcb97acb1a1bb0a27dc5753fbc0548c545 (patch)
tree68938baaf94e50d9c90715cc190825247b2474a1 /perlvars.h
parent7e0e7afedd94fe242b9d912ceebe511cf90e118a (diff)
downloadperl-3fe6f2dcb97acb1a1bb0a27dc5753fbc0548c545.tar.gz
Fix char*/unsigned char* clashes in util.c:fbm_instr and remove
a few extraneous trailing semicolons in perlvars.h. p4raw-id: //depot/perl@358
Diffstat (limited to 'perlvars.h')
-rw-r--r--perlvars.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/perlvars.h b/perlvars.h
index b58ea16728..8a72312e57 100644
--- a/perlvars.h
+++ b/perlvars.h
@@ -158,8 +158,8 @@ PERLVARI(Gnumeric_local, bool, TRUE) /* Assume local numerics */
#endif /* !USE_LOCALE_NUMERIC */
/* constants (these are not literals to facilitate pointer comparisons) */
-PERLVARIC(GYes, char *, "1");
-PERLVARIC(GNo, char *, "");
-PERLVARIC(Ghexdigit, char *, "0123456789abcdef0123456789ABCDEFx");
-PERLVARIC(Gpatleave, char *, "\\.^$@dDwWsSbB+*?|()-nrtfeaxc0123456789[{]}");
+PERLVARIC(GYes, char *, "1")
+PERLVARIC(GNo, char *, "")
+PERLVARIC(Ghexdigit, char *, "0123456789abcdef0123456789ABCDEFx")
+PERLVARIC(Gpatleave, char *, "\\.^$@dDwWsSbB+*?|()-nrtfeaxc0123456789[{]}")