1 #include <stdlib.h>
2 
3 void
myexit(int status)4 myexit (int status)
5 {
6   exit (status);
7 }
8