summaryrefslogtreecommitdiff
path: root/mathoms.c
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2005-11-02 21:27:58 +0000
committerNicholas Clark <nick@ccl4.org>2005-11-02 21:27:58 +0000
commit605b9385ca432fdf5dd870e452cfa8fc5038eab7 (patch)
tree0944bd4c65457f142fc212862178100ba30a6da3 /mathoms.c
parent1444765efaefee475386d81c393f3e679a455714 (diff)
downloadperl-605b9385ca432fdf5dd870e452cfa8fc5038eab7.tar.gz
unlink chmod utime kill can be merged into Perl_pp_chown().
p4raw-id: //depot/perl@25964
Diffstat (limited to 'mathoms.c')
-rw-r--r--mathoms.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/mathoms.c b/mathoms.c
index e814a80f89..659603769b 100644
--- a/mathoms.c
+++ b/mathoms.c
@@ -921,6 +921,26 @@ PP(pp_ftsvtx)
return pp_ftrowned();
}
+PP(pp_unlink)
+{
+ return pp_chown();
+}
+
+PP(pp_chmod)
+{
+ return pp_chown();
+}
+
+PP(pp_utime)
+{
+ return pp_chown();
+}
+
+PP(pp_kill)
+{
+ return pp_chown();
+}
+
U8 *
Perl_uvuni_to_utf8(pTHX_ U8 *d, UV uv)
{