1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-11 18:20:43 +09: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
Notes: sideshowbarker 2024-07-19 06:20:51 +09:00

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>