From 996b554cb86c85b07a3a0c676ec777e46cc05b9a Mon Sep 17 00:00:00 2001 From: Ethan Roseman Date: Sat, 16 Jan 2021 22:04:57 +0900 Subject: [PATCH] Moving headers, README --- include/common.h | 2 +- include/gcc/README.md | 1 + include/{ => gcc}/stdarg.h | 0 include/{ => gcc}/va-mips.h | 0 include/{ => gcc}/varargs.h | 0 5 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 include/gcc/README.md rename include/{ => gcc}/stdarg.h (100%) rename include/{ => gcc}/va-mips.h (100%) rename include/{ => gcc}/varargs.h (100%) diff --git a/include/common.h b/include/common.h index 58307f008e..fa776407b4 100644 --- a/include/common.h +++ b/include/common.h @@ -11,6 +11,6 @@ #include "si.h" #include "messages.h" #include "ld_addrs.h" -#include "stdarg.h" +#include "gcc/stdarg.h" #endif diff --git a/include/gcc/README.md b/include/gcc/README.md new file mode 100644 index 0000000000..581fb48b4d --- /dev/null +++ b/include/gcc/README.md @@ -0,0 +1 @@ +The headers here are from GCC 2.8.1 and can be found in the original source for the compiler as well as [our repo](https://github.com/pmret/gcc-papermario) with modifications made for Paper Mario. diff --git a/include/stdarg.h b/include/gcc/stdarg.h similarity index 100% rename from include/stdarg.h rename to include/gcc/stdarg.h diff --git a/include/va-mips.h b/include/gcc/va-mips.h similarity index 100% rename from include/va-mips.h rename to include/gcc/va-mips.h diff --git a/include/varargs.h b/include/gcc/varargs.h similarity index 100% rename from include/varargs.h rename to include/gcc/varargs.h