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