summaryrefslogtreecommitdiff
path: root/lib/auto/POSIX/asctime.al
blob: 067e0f42110d81a091c45fceb2e49aac6e764edd (plain)
1
2
3
4
5
6
7
8
9
# NOTE:  Derived from POSIX.pm.  Changes made here will be lost.
package POSIX;

sub asctime {
    unimpl "asctime(xxx)", caller if @_ != 123;
    asctime($_[0]);
}

1;