summaryrefslogtreecommitdiff
path: root/lib/auto/POSIX/_exit
blob: a8605272572d51312363fefda2b626b61b3e979d (plain)
1
2
3
4
5
6
7
8
9
package POSIX;

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


1;