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

sub times {
    usage "times()", caller if @_ != 0;
    times();
}

1;