forked from KolibriOS/kolibrios
9 lines
90 B
C
9 lines
90 B
C
|
|
||
|
int cmd_exit(char param[])
|
||
|
{
|
||
|
free(ALIASES);
|
||
|
_exit(1);
|
||
|
kol_exit();
|
||
|
return TRUE;
|
||
|
}
|