LibCore: Move puff() from LibDraw to LibCore

Since it's used both by CGzip and PNGLoader, it seems most appropriate
to keep this in LibCore.
This commit is contained in:
Andreas Kling 2019-11-23 23:43:37 +01:00
commit 35c26a06fc
Notes: sideshowbarker 2024-07-19 11:05:59 +09:00
6 changed files with 6 additions and 7 deletions

View file

@ -1,8 +1,8 @@
#include <AK/FileSystemPath.h>
#include <AK/MappedFile.h>
#include <AK/NetworkOrdered.h>
#include <LibCore/puff.h>
#include <LibDraw/PNGLoader.h>
#include <LibDraw/puff.c>
#include <fcntl.h>
#include <serenity.h>
#include <stdio.h>