diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/filelist.c | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/src/filelist.c b/src/filelist.c index e70e003..0aeaa02 100644 --- a/src/filelist.c +++ b/src/filelist.c @@ -24,19 +24,15 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -#ifdef HAVE_LIBEXIF -#include <libexif/exif-data.h> -#endif - -#ifdef HAVE_LIBCURL -#include <curl/curl.h> -#endif - #include "feh.h" #include "filelist.h" #include "signals.h" #include "options.h" +#ifdef HAVE_LIBCURL +#include <curl/curl.h> +#endif + gib_list *filelist = NULL; gib_list *original_file_items = NULL; /* original file items from argv */ int filelist_len = 0; |