summaryrefslogtreecommitdiff
path: root/handy.h
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-02-20 17:34:32 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-02-20 17:34:32 +0000
commitcbebf3444d32314df9db7cb3988b6c97da05aa13 (patch)
treee0bc62e0157044a228af4aa13570f910aebf0fc8 /handy.h
parent4176d4e4193dbc6436aec8706515884cf6b882d7 (diff)
downloadperl-cbebf3444d32314df9db7cb3988b6c97da05aa13.tar.gz
Integrate changes #8853,8854 from maintperl to mainline.
EBDIC fixes, README.win32 Borland update. p4raw-link: @8854 on //depot/maint-5.6/perl: ece00f1416215bb2d7a51174ba7aa627e0b0a3ad p4raw-link: @8853 on //depot/maint-5.6/perl: 3ef34714520621f9238ff67b9f34f043113325c1 p4raw-id: //depot/perl@8857 p4raw-integrated: from //depot/maint-5.6/perl@8851 'merge in' README.win32 (@8175..) handy.h (@8789..) util.c (@8806..)
Diffstat (limited to 'handy.h')
-rw-r--r--handy.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/handy.h b/handy.h
index 9ac2e296f4..1f1cc531bb 100644
--- a/handy.h
+++ b/handy.h
@@ -483,7 +483,7 @@ Converts the specified character to lowercase.
#define isBLANK_LC_utf8(c) isBLANK(c) /* could be wrong */
#ifdef EBCDIC
-# define toCTRL(c) ebcdic_control(c)
+# define toCTRL(c) Perl_ebcdic_control(c)
#else
/* This conversion works both ways, strangely enough. */
# define toCTRL(c) (toUPPER(c) ^ 64)