Files
Digital-Research-Source-Code/CPM OPERATING SYSTEMS/CPM 68K/1.0X SOURCES/v101/clib/xexit.c
Sepp J Morris 31738079c4 Upload
Digital Research
2020-11-06 18:50:37 +01:00

26 lines
928 B
C

/****************************************************************************/
/* */
/* _ e x i t F u n c t i o n */
/* --------------------------- */
/* Copyright 1982 by Digital Research Inc. All rights reserved. */
/* */
/* The _exit function is called from anywhere to pass control back to */
/* the CCP from the executing C program. No cleaning (of files). */
/* */
/* Calling Sequence: */
/* */
/* _exit(code); */
/* */
/* Where: */
/* code Is the exit status (ignored) */
/* */
/****************************************************************************/
#include <portab.h>
#include <cpm.h>
_exit(code) /***************************/
WORD code; /* Exit status */
{ /* */
__BDOS(EXIT,0L); /* Exit to BDOS */
} /***************************/