summaryrefslogtreecommitdiff
path: root/Userland/df.cpp
diff options
context:
space:
mode:
authorAndrew Kaster <andrewdkaster@gmail.com>2020-05-15 21:12:10 -0600
committerAndreas Kling <kling@serenityos.org>2020-05-20 08:37:50 +0200
commit3de808e860c7a11481baf06d09df10a296dd9cfe (patch)
tree64c07a4980f4bf7840545e7b9bd3dad738cae5df /Userland/df.cpp
parent191073000efdd41b5e991c481e20dc966e39ea80 (diff)
downloadserenity-3de808e860c7a11481baf06d09df10a296dd9cfe.zip
df: Don't include c++ standard <cstring>
Use string.h instead, since that's part of serenity :)
Diffstat (limited to 'Userland/df.cpp')
-rw-r--r--Userland/df.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/df.cpp b/Userland/df.cpp
index c5e56edc4b..9cf1def128 100644
--- a/Userland/df.cpp
+++ b/Userland/df.cpp
@@ -30,7 +30,7 @@
#include <AK/Vector.h>
#include <LibCore/ArgsParser.h>
#include <LibCore/File.h>
-#include <cstring>
+#include <string.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>