Merge pull request #878 from cxd4/undeclared-memset

[core] compile errors from not declaring standard <string.h> functions
This commit is contained in:
zilmar 2016-01-15 09:10:12 +11:00
commit 20f7384918
10 changed files with 9 additions and 4 deletions

View File

@ -1,7 +1,9 @@
#include "stdafx.h"
#include <Common/path.h>
#include <Common/Trace.h>
#include <Common/Util.h>
#include <Project64-core/N64System/Mips/MemoryVirtualMem.h>
#include <Project64-core/N64System/SystemGlobals.h>
#include <Project64-core/Plugins/PluginClass.h>

View File

@ -11,7 +11,6 @@
#include "stdafx.h"
#include <Project64-core/Logging.h>
#include <string.h>
#include <stdio.h>
#include <stdarg.h>
#include <Common/path.h>

View File

@ -9,7 +9,6 @@
* *
****************************************************************************/
#include "stdafx.h"
#include <string.h>
#include "CheatClass.h"
#include <Project64-core/Settings/SettingType/SettingsType-Cheats.h>

View File

@ -10,6 +10,7 @@
****************************************************************************/
#include "stdafx.h"
#include <Common/MemoryManagement.h>
#include <Project64-core/N64System/Mips/Dma.h>
#include <Project64-core/N64System/SystemGlobals.h>
#include <Project64-core/N64System/N64RomClass.h>

View File

@ -9,6 +9,7 @@
* *
****************************************************************************/
#include "stdafx.h"
#include <Project64-core/N64System/Mips/MemoryVirtualMem.h>
#include <Project64-core/N64System/SystemGlobals.h>
#include <Project64-core/N64System/N64RomClass.h>

View File

@ -10,7 +10,6 @@
****************************************************************************/
#include "stdafx.h"
#include <stdio.h>
#include <string.h>
#include <Project64-core/N64System/Mips/PifRam.h>
#include <Project64-core/N64System/SystemGlobals.h>

View File

@ -9,7 +9,6 @@
* *
****************************************************************************/
#include "stdafx.h"
#include <string.h>
#include <Project64-core/N64System/Mips/RegisterClass.h>
#include <Project64-core/N64System/N64Class.h>
#include <Project64-core/N64System/SystemGlobals.h>

View File

@ -10,6 +10,7 @@
****************************************************************************/
#include "stdafx.h"
#include "Rumblepak.h"
#include <Project64-core/N64System/SystemGlobals.h>
#include <Project64-core/Plugins/PluginClass.h>
#include <Project64-core/Plugins/ControllerPlugin.h>

View File

@ -9,6 +9,8 @@
* *
****************************************************************************/
#include "stdafx.h"
#include <stdio.h>
#include <Project64-core/N64System/ProfilingClass.h>
#include <Common/LogClass.h>

View File

@ -1,3 +1,5 @@
#include <string.h>
#include <Common/stdtypes.h>
#include <Common/StdString.h>
#include <Common/Trace.h>