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

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

1;