1 2 3 4 5 6 7 8 9
package POSIX; sub _exit { unimpl "_exit(xxx)", caller if @_ != 123; _exit($_[0]); } 1;