diff options
author | Andreas Kling <kling@serenityos.org> | 2020-03-08 12:05:14 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-03-08 13:06:51 +0100 |
commit | 37fc6c117c1a7537f5ba0de69e027a78cbf31af2 (patch) | |
tree | 93df272dbfd89f7839756ffca85419c2d46ff239 /Userland/su.cpp | |
parent | 35d88f536c4082f7fb6d740973d3cbb79ba74a5e (diff) | |
download | serenity-37fc6c117c1a7537f5ba0de69e027a78cbf31af2.zip |
Userspace: Add missing #includes now that AK/StdLibExtras.h is smaller
Diffstat (limited to 'Userland/su.cpp')
-rw-r--r-- | Userland/su.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/su.cpp b/Userland/su.cpp index 0085974aa0..7529af6efe 100644 --- a/Userland/su.cpp +++ b/Userland/su.cpp @@ -29,6 +29,7 @@ #include <grp.h> #include <pwd.h> #include <stdio.h> +#include <string.h> #include <unistd.h> extern "C" int main(int, char**); |