kolibrios/programs/system/shell/cmd_exit.c

8 lines
65 B
C
Raw Normal View History

void cmd_exit()
{
free(ALIASES);
_exit(1);
kol_exit();
}