diff options
author | Daniel Frederick Crisman <daniel@crisman.org> | 2009-12-16 14:28:20 -0500 |
---|---|---|
committer | Rafael Garcia-Suarez <rgs@consttype.org> | 2009-12-20 12:10:24 +0100 |
commit | c5eef08759955d39d6689ddb2f5c37888248a4d3 (patch) | |
tree | f1a21c2331beddd6d780de8b7620eaf2f29502ff /ext | |
parent | 32e2a35d72e0f63c2f9a8de6041a24d35271a7ff (diff) | |
download | perl-c5eef08759955d39d6689ddb2f5c37888248a4d3.tar.gz |
Add lchown to POSIX.pod
Diffstat (limited to 'ext')
-rw-r--r-- | ext/POSIX/POSIX.pod | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ext/POSIX/POSIX.pod b/ext/POSIX/POSIX.pod index 7263d0a62a..5a2137cfb0 100644 --- a/ext/POSIX/POSIX.pod +++ b/ext/POSIX/POSIX.pod @@ -703,6 +703,14 @@ signals to processes (often to terminate them), see L<perlfunc/kill>. (For returning absolute values of long integers.) labs() is C-specific, see L<perlfunc/abs> instead. +=item lchown + +This is identical to the C function, except the order of arguments is +consistent with Perl's builtin C<chown()> with the added restriction +of only one path, not an list of paths. Does the same thing as the +C<chown()> function but changes the owner of a symbolic link instead +of the file the symbolic link points to. + =item ldexp This is identical to the C function C<ldexp()> |