1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:27:45 +00:00

df: Don't include c++ standard <cstring>

Use string.h instead, since that's part of serenity :)
This commit is contained in:
Andrew Kaster 2020-05-15 21:12:10 -06:00 committed by Andreas Kling
parent 191073000e
commit 3de808e860

View file

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