1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 04:37:34 +00:00

LibC: Remove an unneeded string.h include in ctype.h/cpp

And include string.h in the files that actually needed it
This commit is contained in:
Benoit Lormeau 2020-09-27 12:23:52 +02:00 committed by Andreas Kling
parent e4da2875c5
commit f158cb27ea
5 changed files with 3 additions and 3 deletions

View file

@ -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>