diff options
author | Nicholas Clark <nick@ccl4.org> | 2006-02-07 14:11:42 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-02-07 14:11:42 +0000 |
commit | 6f5f9d368bf061b62d3ab91a14ca2f576d9d96ff (patch) | |
tree | d15068adf2aec0e7155c303650249ced96348664 /mathoms.c | |
parent | 8cbb68f869a8660d234070bc156e826f12f8aa45 (diff) | |
download | perl-6f5f9d368bf061b62d3ab91a14ca2f576d9d96ff.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.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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) { |