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

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

1;