mirror of
https://github.com/diegocr/libnix.git
synced 2026-09-11 19:25:43 +00:00
10 lines
168 B
C
10 lines
168 B
C
#include <signal.h>
|
|
#include <proto/exec.h>
|
|
#include <dos/dos.h>
|
|
|
|
void __chkabort(void)
|
|
{
|
|
if (SetSignal(0L,SIGBREAKF_CTRL_C) & SIGBREAKF_CTRL_C)
|
|
raise(SIGINT);
|
|
}
|