1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 19:17:44 +00:00

LibGfx: Remove unnecessary includes from PNGLoader.cpp

This commit is contained in:
Andreas Kling 2022-02-14 17:39:40 +01:00
parent 81216c51d1
commit aa679643c1

View file

@ -9,16 +9,10 @@
#include <AK/Vector.h>
#include <LibCompress/Zlib.h>
#include <LibGfx/PNGLoader.h>
#include <fcntl.h>
#include <stdio.h>
#include <string.h>
#include <sys/mman.h>
#include <sys/stat.h>
#include <unistd.h>
#ifdef __serenity__
# include <LibCompress/Deflate.h>
# include <serenity.h>
#endif
namespace Gfx {