summaryrefslogtreecommitdiff
path: root/lib/auto/POSIX/_exit
diff options
context:
space:
mode:
Diffstat (limited to 'lib/auto/POSIX/_exit')
-rw-r--r--lib/auto/POSIX/_exit9
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/auto/POSIX/_exit b/lib/auto/POSIX/_exit
new file mode 100644
index 0000000000..a860527257
--- /dev/null
+++ b/lib/auto/POSIX/_exit
@@ -0,0 +1,9 @@
+package POSIX;
+
+sub _exit {
+ unimpl "_exit(xxx)", caller if @_ != 123;
+ _exit($_[0]);
+}
+
+
+1;