#include <lunaix/fctrl.h>
#include <lunaix/foptions.h>
#include <lunaix/ioctl.h>
+#include <lunaix/lunaix.h>
#include <lunaix/lunistd.h>
-#include <lunaix/proc.h>
#include <lunaix/signal.h>
#include <lunaix/status.h>
pid_t p;
signal(_SIGINT, sigint_handle);
- // set our shell as foreground process (unistd.h:tcsetpgrp is wrapper of
- // this)
+ // set our shell as foreground process
+ // (unistd.h:tcsetpgrp is essentially a wrapper of this)
// stdout (by default, unless user did smth) is the tty we are currently at
ioctl(stdout, TIOCSPGRP, getpgid());