mirror of
https://github.com/cahirwpz/libnix.git
synced 2025-12-08 14:58:56 +00:00
11 lines
180 B
C
Executable File
11 lines
180 B
C
Executable File
#include <dos/dos.h>
|
|
#include <stdlib.h>
|
|
|
|
void __request(const char *text);
|
|
|
|
void _XCOVF(void) /* stack overflow handler */
|
|
{
|
|
__request("Stack overflow");
|
|
exit(RETURN_FAIL);
|
|
}
|