From 9ae7e341101d8f840d0a98e168fe055e93668487 Mon Sep 17 00:00:00 2001 From: aliaspider Date: Thu, 2 Mar 2017 09:40:25 +0100 Subject: [PATCH] fix implicit-function-declaration warnings/errors. --- frontend/main.c | 2 +- libpcsxcore/plugins.c | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/main.c b/frontend/main.c index 89e96e4a..6887dd1e 100644 --- a/frontend/main.c +++ b/frontend/main.c @@ -772,7 +772,7 @@ int emu_save_state(int slot) return ret; ret = SaveState(fname); -#ifdef HAVE_PRE_ARMV7 /* XXX GPH hack */ +#if defined(HAVE_PRE_ARMV7) && !defined(_3DS) /* XXX GPH hack */ sync(); #endif SysPrintf("* %s \"%s\" [%d]\n", diff --git a/libpcsxcore/plugins.c b/libpcsxcore/plugins.c index c27ce4f1..afe3f3b8 100644 --- a/libpcsxcore/plugins.c +++ b/libpcsxcore/plugins.c @@ -23,6 +23,7 @@ #include "plugins.h" #include "cdriso.h" +#include "../plugins/dfinput/externals.h" static char IsoFile[MAXPATHLEN] = ""; static s64 cdOpenCaseTime = 0; -- 2.39.2