Loaders: Remove unnecessary headers

This commit is contained in:
Kim Woelders 2021-07-16 17:28:03 +02:00
parent 3c21caea23
commit e709825314
8 changed files with 0 additions and 20 deletions

View File

@ -1,8 +1,5 @@
#include "loader_common.h"
#include <bzlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#define OUTBUF_SIZE 16384
#define INBUF_SIZE 1024

View File

@ -1,7 +1,4 @@
#include "loader_common.h"
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <gif_lib.h>
int

View File

@ -6,9 +6,7 @@
* https://en.wikipedia.org/wiki/BMP_file_format
*/
#include "loader_common.h"
#include <limits.h>
#include <string.h>
#define DEBUG 0
#if DEBUG

View File

@ -1,7 +1,4 @@
#include "loader_common.h"
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <errno.h>
#include <limits.h>
#include <id3tag.h>

View File

@ -10,11 +10,9 @@
* header/footer structures courtesy of the GIMP Targa plugin
*/
#include "loader_common.h"
#include <fcntl.h>
#include <stdint.h>
#include <sys/stat.h>
#include <sys/mman.h>
#include "blend.h"
/* flip an inverted image - see RLE reading below */
static void tgaflip(DATA32 * in, int w, int h, int fliph, int flipv);

View File

@ -3,7 +3,6 @@
#include "loader_common.h"
#include <setjmp.h>
#include <stdarg.h>
#include <stdint.h>
#include <tiffio.h>

View File

@ -1,7 +1,4 @@
#include "loader_common.h"
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
static FILE *rgb_txt = NULL;

View File

@ -1,8 +1,5 @@
#include "loader_common.h"
#include <zlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#define OUTBUF_SIZE 16484