From af402e6299d0dbb1baaa31a917ec50ed59f886e1 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Tue, 21 Oct 2014 18:39:42 +0200 Subject: [PATCH] file_extract.c - lessen header dependencies --- file_extract.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/file_extract.c b/file_extract.c index 87ff73bde7..5ab5dcfee5 100644 --- a/file_extract.c +++ b/file_extract.c @@ -14,11 +14,9 @@ */ #include "file_extract.h" -#include "file.h" #include "file_path.h" -#include "string_list.h" #include -#include "general.h" +#include "retroarch_logger.h" #include #include #include @@ -31,6 +29,7 @@ * The file is mapped to memory directly (via mmap() or just * plain read_file()). */ + struct zlib_file_backend { void *(*open)(const char *path);