projects
/
p5sagit/p5-mst-13.2.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
89bbfb043aac7d707c5a4a5922e0190c6f783189
[p5sagit/p5-mst-13.2.git]
/
lib
/
auto
/
POSIX
/
access.al
1
# NOTE: Derived from POSIX.pm. Changes made here will be lost.
2
package POSIX;
3
4
sub access {
5
unimpl "access(xxx)", caller if @_ != 123;
6
access($_[0]);
7
}
8
9
1;