Files
reactos/reactos/lib/crtdll/stdlib/_exit.c
T
Boudewijn Dekker 97c1f757f6 Fixed some bugs.
svn path=/trunk/; revision=411
1999-04-23 18:43:00 +00:00

47 lines
746 B
C

#include <windows.h>
#include <crtdll/stdlib.h>
#include <crtdll/io.h>
#include <crtdll/fcntl.h>
#include <crtdll/internal/atexit.h>
struct __atexit *__atexit_ptr = 0;
void exit(int status)
{
//int i;
struct __atexit *a = __atexit_ptr;
__atexit_ptr = 0; /* to prevent infinite loops */
while (a)
{
(a->__function)();
a = a->__next;
}
/*
if (__stdio_cleanup_hook)
__stdio_cleanup_hook();
for (i=0; i<djgpp_last_dtor-djgpp_first_dtor; i++)
djgpp_first_dtor[i]();
*/
/* in case the program set it this way */
_setmode(0, O_TEXT);
_exit(status);
for(;;);
}
void _exit(int _status)
{
ExitProcess(_status);
for(;;);
}
void _cexit( void )
{
// flush
}
void _c_exit( void )
{
// reset interup vectors
}