Files
2024-02-19 00:25:23 -05:00

16 lines
299 B
C

/* e x i t */
#include "stdiolib.h"
/*LINTLIBRARY*/
void exit F1(int, status)
{
if (__Zatexit != (void (*) P((void))) NULL)
(*__Zatexit)();
if (__Zwrapup != (void (*) P((void))) NULL)
(*__Zwrapup)();
_exit(status);
}