summaryrefslogtreecommitdiffhomepage
path: root/crt/nt64/crt1.c
diff options
context:
space:
mode:
Diffstat (limited to 'crt/nt64/crt1.c')
-rw-r--r--crt/nt64/crt1.c4
1 files changed, 2 insertions, 2 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);
}