diff options
author | midipix <writeonce@midipix.org> | 2017-10-15 09:12:33 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2017-10-15 09:43:16 -0400 |
commit | 4b0868b64dd91b3353719636d9ae35fe5700ead1 (patch) | |
tree | c55ada4b366cd5687ba7e67ee9219a4836a7bdbf /crt/nt64 | |
parent | bd952743367f27123fa4acb4765613843a222a40 (diff) | |
download | mmglue-4b0868b64dd91b3353719636d9ae35fe5700ead1.tar.bz2 mmglue-4b0868b64dd91b3353719636d9ae35fe5700ead1.tar.xz |
psxglue.h: renamed __PSXOPT_TTYDBG --> __PSXOPT_DEBUG.
Diffstat (limited to 'crt/nt64')
-rw-r--r-- | crt/nt64/crt1.c | 4 | ||||
-rw-r--r-- | crt/nt64/crtdebug.c | 3 | ||||
-rw-r--r-- | crt/nt64/crtdev.c | 3 |
3 files changed, 5 insertions, 5 deletions
diff --git a/crt/nt64/crt1.c b/crt/nt64/crt1.c index 6d22669..8c1f838 100644 --- a/crt/nt64/crt1.c +++ b/crt/nt64/crt1.c @@ -13,7 +13,7 @@ static const int __disabled = 0; extern const int __crtopt_posix __attribute((weak,alias("__disabled"))); -extern const int __crtopt_ttydbg __attribute((weak,alias("__disabled"))); +extern const int __crtopt_debug __attribute((weak,alias("__disabled"))); int main(); @@ -28,6 +28,6 @@ void _start(void) __libc_entry_routine( main, __psx_init, - __crtopt_posix | __crtopt_ttydbg); + __crtopt_posix | __crtopt_debug); } diff --git a/crt/nt64/crtdebug.c b/crt/nt64/crtdebug.c new file mode 100644 index 0000000..4f4f6d2 --- /dev/null +++ b/crt/nt64/crtdebug.c @@ -0,0 +1,3 @@ +#include "psxglue.h" + +const int __crtopt_debug = __PSXOPT_DEBUG; diff --git a/crt/nt64/crtdev.c b/crt/nt64/crtdev.c deleted file mode 100644 index 8aa80e6..0000000 --- a/crt/nt64/crtdev.c +++ /dev/null @@ -1,3 +0,0 @@ -#include "psxglue.h" - -const int __crtopt_ttydbg = __PSXOPT_TTYDBG; |