diff options
author | Nicholas Clark <nick@ccl4.org> | 2005-11-03 14:19:34 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-11-03 14:19:34 +0000 |
commit | 795543142bb32fe76ea63b15b01d456c431c8e0b (patch) | |
tree | 82b013e0cfb7d653890de947a7229876a6bbc454 /mathoms.c | |
parent | aa11d566edeeb3dfab00176c682dace5164e6e03 (diff) | |
download | perl-795543142bb32fe76ea63b15b01d456c431c8e0b.tar.gz |
Perl_pp_symlink and Perl_pp_link can be merged. The diff looks evil,
but the actual finished code is not as bad as it seems.
p4raw-id: //depot/perl@25972
Diffstat (limited to 'mathoms.c')
-rw-r--r-- | mathoms.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -941,6 +941,11 @@ PP(pp_kill) return pp_chown(); } +PP(pp_symlink) +{ + return pp_link(); +} + U8 * Perl_uvuni_to_utf8(pTHX_ U8 *d, UV uv) { |