summaryrefslogtreecommitdiff
path: root/Userland/Shell/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Shell/main.cpp')
-rw-r--r--Userland/Shell/main.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/Userland/Shell/main.cpp b/Userland/Shell/main.cpp
index 581edd93c1..d5eb1bcbb0 100644
--- a/Userland/Shell/main.cpp
+++ b/Userland/Shell/main.cpp
@@ -24,16 +24,17 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#include "Execution.h"
#include "Shell.h"
#include <LibCore/ArgsParser.h>
#include <LibCore/Event.h>
#include <LibCore/EventLoop.h>
#include <LibCore/File.h>
+#include <errno.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
+#include <unistd.h>
RefPtr<Line::Editor> editor;
Shell::Shell* s_shell;