summaryrefslogtreecommitdiff
path: root/mathoms.c
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2006-02-07 14:11:42 +0000
committerNicholas Clark <nick@ccl4.org>2006-02-07 14:11:42 +0000
commitdaa2adfd3a5f888cb1c60469c1ec42e215d455bb (patch)
treed15068adf2aec0e7155c303650249ced96348664 /mathoms.c
parent2723d2164bbb7a5d9949447f06dde05bf516db63 (diff)
downloadperl-daa2adfd3a5f888cb1c60469c1ec42e215d455bb.tar.gz
pp_hex can be implemented trivially by pp_oct, making pp_hex a mathom.
p4raw-id: //depot/perl@27119
Diffstat (limited to 'mathoms.c')
-rw-r--r--mathoms.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/mathoms.c b/mathoms.c
index 261abe3774..f1f20b226b 100644
--- a/mathoms.c
+++ b/mathoms.c
@@ -1044,6 +1044,11 @@ PP(pp_rindex)
return pp_index();
}
+PP(pp_hex)
+{
+ return pp_oct();
+}
+
U8 *
Perl_uvuni_to_utf8(pTHX_ U8 *d, UV uv)
{