summaryrefslogtreecommitdiff
path: root/Userland/Utilities/dd.cpp
diff options
context:
space:
mode:
authorLinus Groh <mail@linusgroh.de>2021-05-31 18:01:53 +0100
committerLinus Groh <mail@linusgroh.de>2021-05-31 18:01:53 +0100
commit1eb048bed02e1c32e40c8f0df6688cdde06bb0d3 (patch)
tree193b5bba7f89d5ab6da84de67716bc8f37c6d30e /Userland/Utilities/dd.cpp
parent16d51d78c0ca292a12cc27fe0766fa86df25d8a9 (diff)
downloadserenity-1eb048bed02e1c32e40c8f0df6688cdde06bb0d3.zip
Userland: Remove a bunch of unused includes
As reported by CLion.
Diffstat (limited to 'Userland/Utilities/dd.cpp')
-rw-r--r--Userland/Utilities/dd.cpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/Userland/Utilities/dd.cpp b/Userland/Utilities/dd.cpp
index a851340ed7..60875a9e35 100644
--- a/Userland/Utilities/dd.cpp
+++ b/Userland/Utilities/dd.cpp
@@ -7,15 +7,12 @@
#include <AK/Optional.h>
#include <AK/String.h>
#include <AK/Vector.h>
-
#include <fcntl.h>
-#include <sys/stat.h>
-#include <sys/types.h>
-#include <unistd.h>
-
#include <stdint.h>
#include <stdio.h>
#include <string.h>
+#include <sys/types.h>
+#include <unistd.h>
const char* usage = "usage:\n"
"\tdd <options>\n"