diff options
author | Andrew Kaster <andrewdkaster@gmail.com> | 2020-05-15 21:12:10 -0600 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-05-20 08:37:50 +0200 |
commit | 3de808e860c7a11481baf06d09df10a296dd9cfe (patch) | |
tree | 64c07a4980f4bf7840545e7b9bd3dad738cae5df /Userland/df.cpp | |
parent | 191073000efdd41b5e991c481e20dc966e39ea80 (diff) | |
download | serenity-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.cpp | 2 |
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> |