2021-04-27 18:33:31 +02:00
|
|
|
/* Copyright (C) 2021 Logaev Maxim (turbocat2001), GPLv2 */
|
|
|
|
|
2021-05-25 17:38:14 +02:00
|
|
|
#include <conio.h>
|
2021-04-27 18:33:31 +02:00
|
|
|
#include <sys/ksys.h>
|
|
|
|
|
|
|
|
void exit(int status)
|
|
|
|
{
|
|
|
|
if(__con_is_load){
|
2021-05-25 17:38:14 +02:00
|
|
|
con_exit(status);
|
2021-04-27 18:33:31 +02:00
|
|
|
}
|
|
|
|
_ksys_exit();
|
|
|
|
}
|