summaryrefslogtreecommitdiff
path: root/Userland
diff options
context:
space:
mode:
Diffstat (limited to 'Userland')
-rw-r--r--Userland/ls.cpp1
-rw-r--r--Userland/sh.cpp1
2 files changed, 2 insertions, 0 deletions
diff --git a/Userland/ls.cpp b/Userland/ls.cpp
index 80ca15bd64..d5969b1e36 100644
--- a/Userland/ls.cpp
+++ b/Userland/ls.cpp
@@ -5,6 +5,7 @@
#include <string.h>
#include <getopt.h>
#include <time.h>
+#include <fcntl.h>
#include <sys/ioctl.h>
#include <sys/stat.h>
#include <AK/AKString.h>
diff --git a/Userland/sh.cpp b/Userland/sh.cpp
index 0e49297420..0cd80c8628 100644
--- a/Userland/sh.cpp
+++ b/Userland/sh.cpp
@@ -8,6 +8,7 @@
#include <fcntl.h>
#include <termios.h>
#include <sys/mman.h>
+#include <sys/stat.h>
#include <sys/utsname.h>
#include <AK/FileSystemPath.h>