summaryrefslogtreecommitdiff
path: root/include/PR
diff options
context:
space:
mode:
authorDerek Hensley <hensley.derek58@gmail.com>2024-06-03 11:33:03 -0700
committerGitHub <noreply@github.com>2024-06-03 14:33:03 -0400
commitf26e77ba4088f20e72e13409f9ad535039abd291 (patch)
treefa39e6c8bb57bfe5729854c8ea2bd3e25ea4155f /include/PR
parent312b65d5e34878df4b70d8b9922e1082213b3662 (diff)
More General Cleanup (#1638)
* LINKER_FILES in makefile * COLPOLY_GET_NORMAL * math header * libc * M_PI for cosf and sinf files * MAXFLOAT * Revert "MAXFLOAT" This reverts commit 96b75ffaa89b1a4ca1c08278b28bc3c70224701a. * Remove SHT_MINV * SHRT_MAX * Add M_PI * Angle macros * f suffix * Format
Diffstat (limited to 'include/PR')
-rw-r--r--include/PR/controller_voice.h2
-rw-r--r--include/PR/os_cache.h2
-rw-r--r--include/PR/os_convert.h2
-rw-r--r--include/PR/os_internal_si.h2
-rw-r--r--include/PR/os_libc.h2
-rw-r--r--include/PR/os_pi.h4
-rw-r--r--include/PR/piint.h2
-rw-r--r--include/PR/xstdio.h2
8 files changed, 9 insertions, 9 deletions
diff --git a/include/PR/controller_voice.h b/include/PR/controller_voice.h
index 022e69c03..84a2d33ba 100644
--- a/include/PR/controller_voice.h
+++ b/include/PR/controller_voice.h
@@ -4,7 +4,7 @@
#include "ultratypes.h"
#include "os_voice.h"
#include "os_message.h"
-#include "libc/stddef.h"
+#include "stddef.h"
typedef struct {
/* 0x0 */ u8 dummy;
diff --git a/include/PR/os_cache.h b/include/PR/os_cache.h
index 8a920c728..a5ecab6ed 100644
--- a/include/PR/os_cache.h
+++ b/include/PR/os_cache.h
@@ -2,7 +2,7 @@
#define PR_OS_CACHE_H
#include "ultratypes.h"
-#include "libc/stddef.h"
+#include "stddef.h"
void osInvalDCache(void* vaddr, size_t nbytes);
void osInvalICache(void* vaddr, size_t nbytes);
diff --git a/include/PR/os_convert.h b/include/PR/os_convert.h
index e9d1f68a8..decb7cfbf 100644
--- a/include/PR/os_convert.h
+++ b/include/PR/os_convert.h
@@ -1,7 +1,7 @@
#ifndef PR_CONVERT_H
#define PR_CONVERT_H
-#include "libc/stdint.h"
+#include "stdint.h"
#define OS_CLOCK_RATE 62500000LL
#define OS_CPU_COUNTER (OS_CLOCK_RATE*3/4)
diff --git a/include/PR/os_internal_si.h b/include/PR/os_internal_si.h
index e1d88acca..c2a227336 100644
--- a/include/PR/os_internal_si.h
+++ b/include/PR/os_internal_si.h
@@ -2,7 +2,7 @@
#define PR_OS_INTERNAL_SI_H
#include "ultratypes.h"
-#include "libc/stdint.h"
+#include "stdint.h"
s32 __osSiRawWriteIo(uintptr_t devAddr, u32 data);
diff --git a/include/PR/os_libc.h b/include/PR/os_libc.h
index d53d871bb..dfbf6cd43 100644
--- a/include/PR/os_libc.h
+++ b/include/PR/os_libc.h
@@ -1,7 +1,7 @@
#ifndef PR_OS_LIBC_H
#define PR_OS_LIBC_H
-#include "libc/stdarg.h"
+#include "stdarg.h"
void bcopy(void* __src, void* __dest, int __n);
diff --git a/include/PR/os_pi.h b/include/PR/os_pi.h
index 7959ac7b3..42a45d244 100644
--- a/include/PR/os_pi.h
+++ b/include/PR/os_pi.h
@@ -3,8 +3,8 @@
#include "ultratypes.h"
#include "os_message.h"
-#include "libc/stddef.h"
-#include "libc/stdint.h"
+#include "stddef.h"
+#include "stdint.h"
typedef struct {
diff --git a/include/PR/piint.h b/include/PR/piint.h
index 8517f9d63..c599de790 100644
--- a/include/PR/piint.h
+++ b/include/PR/piint.h
@@ -3,7 +3,7 @@
#include "ultratypes.h"
#include "os_pi.h"
-#include "libc/stdint.h"
+#include "stdint.h"
#define LEO_BASE_REG 0x05000000
diff --git a/include/PR/xstdio.h b/include/PR/xstdio.h
index 76972871d..34d02ddeb 100644
--- a/include/PR/xstdio.h
+++ b/include/PR/xstdio.h
@@ -2,7 +2,7 @@
#define PR_XSTDIO_H
#include "ultratypes.h"
-#include "libc/stdarg.h"
+#include "stdarg.h"
typedef struct {
/* 0x0 */ union {