home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Geek Gadgets 1
/
ADE-1.bin
/
ade-dist
/
perl-5.003-bin.lha
/
lib
/
perl5
/
auto
/
POSIX
/
localtime.al
< prev
next >
Wrap
Text File
|
1996-10-09
|
174b
|
10 lines
# NOTE: Derived from ../../lib/POSIX.pm. Changes made here will be lost.
package POSIX;
sub localtime {
usage "localtime(time)" if @_ != 1;
localtime($_[0]);
}
1;