_exit.c - vx32 - Local 9vx git repository for patches.
 (HTM) git clone git://r-36.net/vx32
 (DIR) Log
 (DIR) Files
 (DIR) Refs
       ---
       _exit.c (136B)
       ---
            1 #include <stdlib.h>
            2 #include <errno.h>
            3 #include "syscall.h"
            4 
            5 void _exit(int status)
            6 {
            7         while(1)
            8                 syscall(VXSYSEXIT, 0, 0, 0, 0, 0);
            9 }
           10