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

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

1;