/* Stub version of _exit. */ #include #include "config.h" #include <_ansi.h> #include <_syslist.h> _VOID _DEFUN (_exit, (rc), int rc) { /* Default stub just causes a divide by 0 exception. */ int x = rc / INT_MAX; x = 4 / x; /* Convince GCC that this function never returns. */ for (;;) ; }