mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2025-09-13 05:57:55 -04:00

- big refactoring, now uses libc.obj - added kfetch command git-svn-id: svn://kolibrios.org@8827 a494cfbc-eb01-0410-851d-a64ba20cac60
10 lines
111 B
C
10 lines
111 B
C
|
|
int cmd_exit(char param[])
|
|
{
|
|
free(ALIASES);
|
|
con_exit(1);
|
|
kol_exit();
|
|
return TRUE;
|
|
}
|
|
|