summaryrefslogtreecommitdiff
path: root/src/user/knob/quit.c
blob: 98881b7c8cea577d0827bed84bfe5117d7ac9ac6 (plain) (blame)
1
2
3
4
5
6
7
8
#include <pland/syscall.h>
#include <knob/file.h>

__attribute__ ((noreturn))
void quit() {
  _close_all_files();
  _exit_task();
}