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

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

1;