POSIX::chown(). It's different from the POSIX order but
it's the same than CORE::chown(). Damn.
p4raw-id: //depot/perl@22502
}
sub chown {
- usage "chown(filename, uid, gid)" if @_ != 3;
+ usage "chown(uid, gid, filename)" if @_ != 3;
CORE::chown($_[0], $_[1], $_[2]);
}