mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-08-18 20:57:46 -04:00
Add guards around std library headers (#3013)
* Last fix for standard compiler error * adding define guards around headers * rename cmath.h and climits.h to cmath and climits respectively * renaming cstdarg.h to cstdarg * renaming cstdlib.h to cstdlib * renaming cstring.h to cstring * renaming cstdio.h to cstdio * renaming cmath locale ctype * renaming stdarg string and va_list * renaming cstddef * renaming stdio stddef stdlib * renaming algorithm, functional, iterator, memory, and utility * renaming bitset, cstdint, limits, and stdint * renaming new and type_traits * update quote includes for standard library headers to angle bracket includes
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
#include <cstdlib.h>
|
||||
#include <cstdlib>
|
||||
#include <dolphin/dolphin.h>
|
||||
#include <dolphin/card.h>
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#include <cstddef.h>
|
||||
#include <cstddef>
|
||||
#include <dolphin/dolphin.h>
|
||||
#include <dolphin/hw_regs.h>
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#include <cstddef.h>
|
||||
#include <cstddef>
|
||||
|
||||
#include <dolphin/dolphin.h>
|
||||
#include <dolphin/hw_regs.h>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#include <cstring.h>
|
||||
#include <cstring>
|
||||
|
||||
#include <dolphin/gx.h>
|
||||
#include <dolphin/os.h>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#include <cstddef.h>
|
||||
#include <cstddef>
|
||||
#include <dolphin/base/PPCArch.h>
|
||||
#include <dolphin/gx.h>
|
||||
#include <dolphin/os.h>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#include <cstddef.h>
|
||||
#include <cstddef>
|
||||
#include <dolphin/gx.h>
|
||||
#include <dolphin/os.h>
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#include <cstring.h>
|
||||
#include <cstring>
|
||||
|
||||
#include <dolphin/base/PPCArch.h>
|
||||
#include <dolphin/gx.h>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#include <cstddef.h>
|
||||
#include <cstddef>
|
||||
#include <dolphin/base/PPCArch.h>
|
||||
#include <dolphin/gx.h>
|
||||
#include <dolphin/os.h>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#include <dolphin/gx.h>
|
||||
#include <dolphin/os.h>
|
||||
#include <cstring.h>
|
||||
#include <cstring>
|
||||
|
||||
#include "__gx.h"
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#if DEBUG
|
||||
|
||||
#include <cstdio.h>
|
||||
#include <cstdio>
|
||||
|
||||
#include <dolphin/gx.h>
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#if DEBUG
|
||||
|
||||
#include <cstdio.h>
|
||||
#include <cstdio>
|
||||
|
||||
#include <dolphin/gx.h>
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#include <cstdio.h>
|
||||
#include <cstdio>
|
||||
#include <dolphin/dolphin.h>
|
||||
#include <dolphin/os.h>
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#include <cstdlib.h>
|
||||
#include <cstdlib>
|
||||
#include <dolphin/dolphin.h>
|
||||
#include <dolphin/os.h>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user