home *** CD-ROM | disk | FTP | other *** search
- include compiler.inc
- ttl EXIT, 1.03, 07-29-86 clr
-
- ;---------------------------- C Source File-----------------------------;
- ; ;
- ; /* quick and dirty exit() function until full version can be done ;
- ; */ ;
- ; ;
- ; exit(exvl) int exvl; ;
- ; { _exit(exvl); ;
- ; } ;
- ; ;
- ;--------------------------end of C Source File-------------------------;
-
- dseg
- cseg
- extf _exit
-
- procdef exit, <<exvl, word>>
-
- callit _exit <<exvl,word>>
-
- pret
- pend exit
- finish