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

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

1;