blob: 36ae11e4c70eaa40ae631bded24b91ddf88b1e70 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# NOTE: Derived from POSIX.pm. Changes made here will be lost.
package POSIX;
sub perror {
unimpl "perror() is C-specific--print $! instead", caller;
unimpl "perror(xxx)", caller if @_ != 123;
perror($_[0]);
}
1;
|