mirror of
https://github.com/SmallPond/MIT6.828_OS.git
synced 2026-02-03 11:03:16 +08:00
11 lines
79 B
C
11 lines
79 B
C
|
|
#include <inc/lib.h>
|
|
|
|
void
|
|
exit(void)
|
|
{
|
|
close_all();
|
|
sys_env_destroy(0);
|
|
}
|
|
|