mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-08 13:11:49 +00:00
Fix C++ header includes
This commit is contained in:
parent
79aba08295
commit
864979179a
2 changed files with 9 additions and 3 deletions
6
.gitignore
vendored
6
.gitignore
vendored
|
@ -36,6 +36,12 @@
|
||||||
*.x86_64
|
*.x86_64
|
||||||
*.hex
|
*.hex
|
||||||
|
|
||||||
|
# Switch Executables
|
||||||
|
*.nso
|
||||||
|
*.nro
|
||||||
|
*.nacp
|
||||||
|
*.pfs0
|
||||||
|
|
||||||
# Debug files
|
# Debug files
|
||||||
*.dSYM/
|
*.dSYM/
|
||||||
*.su
|
*.su
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#include <stdlib.h>
|
#include <cstdlib>
|
||||||
#include <stdint.h>
|
#include <cstdint>
|
||||||
#include <string.h>
|
#include <cstring>
|
||||||
#include <malloc.h>
|
#include <malloc.h>
|
||||||
|
|
||||||
#include <switch.h>
|
#include <switch.h>
|
||||||
|
|
Loading…
Reference in a new issue