1: #include "../h/rt.h"
2:
3: /*
4: * exit(status) - exit process with specified status, defaults to 0.
5: */
6:
7: Xexit(nargs, arg1)
8: int nargs;
9: struct descrip arg1;
10: {
11: defshort(&arg1, 0);
12: c_exit(INTVAL(arg1));
13: }
14:
15: Procblock(exit,1)
Defined functions
Xexit
defined in line
7;
never used