home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Geek Gadgets 1
/
ADE-1.bin
/
ade-bin
/
lib
/
perl5
/
auto
/
posix
/
strerror.al
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1996-10-09
|
186 b
|
11 lines
# NOTE: Derived from ../../lib/POSIX.pm. Changes made here will be lost.
package POSIX;
sub strerror {
usage "strerror(errno)" if @_ != 1;
local $! = $_[0];
$! . "";
}
1;