Browse Source

LibGfx: Remove unnecessary includes from PNGLoader.cpp

Andreas Kling 3 years ago
parent
commit
aa679643c1
1 changed files with 0 additions and 6 deletions
  1. 0 6
      Userland/Libraries/LibGfx/PNGLoader.cpp

+ 0 - 6
Userland/Libraries/LibGfx/PNGLoader.cpp

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