Merge pull request #878 from cxd4/undeclared-memset
[core] compile errors from not declaring standard <string.h> functions
This commit is contained in:
commit
20f7384918
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -9,7 +9,6 @@
|
|||
* *
|
||||
****************************************************************************/
|
||||
#include "stdafx.h"
|
||||
#include <string.h>
|
||||
#include "CheatClass.h"
|
||||
|
||||
#include <Project64-core/Settings/SettingType/SettingsType-Cheats.h>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -9,6 +9,8 @@
|
|||
* *
|
||||
****************************************************************************/
|
||||
#include "stdafx.h"
|
||||
#include <stdio.h>
|
||||
|
||||
#include <Project64-core/N64System/ProfilingClass.h>
|
||||
#include <Common/LogClass.h>
|
||||
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
#include <string.h>
|
||||
|
||||
#include <Common/stdtypes.h>
|
||||
#include <Common/StdString.h>
|
||||
#include <Common/Trace.h>
|
||||
|
|
Loading…
Reference in New Issue