diff options
author | Benoit Lormeau <blormeau@outlook.com> | 2020-09-27 12:23:52 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-09-27 21:15:25 +0200 |
commit | f158cb27ea831e96fce8f30f38c76533cb31ec44 (patch) | |
tree | 0a26c9bd504896c396281c8d7c7ef8f09b9230e5 /Userland/useradd.cpp | |
parent | e4da2875c5c5aee3722e25749cc7904e5d108b3b (diff) | |
download | serenity-f158cb27ea831e96fce8f30f38c76533cb31ec44.zip |
LibC: Remove an unneeded string.h include in ctype.h/cpp
And include string.h in the files that actually needed it
Diffstat (limited to 'Userland/useradd.cpp')
-rw-r--r-- | Userland/useradd.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/useradd.cpp b/Userland/useradd.cpp index 5ee9df57f8..137a012bf2 100644 --- a/Userland/useradd.cpp +++ b/Userland/useradd.cpp @@ -28,6 +28,7 @@ #include <ctype.h> #include <pwd.h> #include <stdio.h> +#include <string.h> #include <sys/stat.h> #include <sys/types.h> #include <unistd.h> |