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

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

1;