kolibrios/programs/system/shell/cmd/cmd_exit.c
Rustem Gimadutdinov (rgimad) 68cf3e4293 SHELL 0.8.2
- big refactoring, now uses libc.obj
- added kfetch command

git-svn-id: svn://kolibrios.org@8827 a494cfbc-eb01-0410-851d-a64ba20cac60
2021-06-12 21:34:41 +00:00

10 lines
111 B
C

int cmd_exit(char param[])
{
free(ALIASES);
con_exit(1);
kol_exit();
return TRUE;
}