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

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

1;