diff options
Diffstat (limited to 'crt')
-rw-r--r-- | crt/crtdebug.c (renamed from crt/crtdev.c) | 0 | ||||
-rw-r--r-- | crt/nt32/crt1.c | 4 | ||||
-rw-r--r-- | crt/nt32/crtdebug.c | 3 | ||||
-rw-r--r-- | crt/nt32/crtdev.c | 3 | ||||
-rw-r--r-- | crt/nt64/crt1.c | 4 | ||||
-rw-r--r-- | crt/nt64/crtdebug.c | 3 | ||||
-rw-r--r-- | crt/nt64/crtdev.c | 3 |
7 files changed, 10 insertions, 10 deletions
diff --git a/crt/crtdev.c b/crt/crtdebug.c index e69de29..e69de29 100644 --- a/crt/crtdev.c +++ b/crt/crtdebug.c diff --git a/crt/nt32/crt1.c b/crt/nt32/crt1.c index 90a6007..6605bcb 100644 --- a/crt/nt32/crt1.c +++ b/crt/nt32/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/nt32/crtdebug.c b/crt/nt32/crtdebug.c new file mode 100644 index 0000000..4f4f6d2 --- /dev/null +++ b/crt/nt32/crtdebug.c @@ -0,0 +1,3 @@ +#include "psxglue.h" + +const int __crtopt_debug = __PSXOPT_DEBUG; diff --git a/crt/nt32/crtdev.c b/crt/nt32/crtdev.c deleted file mode 100644 index 8aa80e6..0000000 --- a/crt/nt32/crtdev.c +++ /dev/null @@ -1,3 +0,0 @@ -#include "psxglue.h" - -const int __crtopt_ttydbg = __PSXOPT_TTYDBG; 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; |