summaryrefslogtreecommitdiffhomepage
path: root/crt/nt32/crt1.c
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2017-10-15 10:44:35 -0400
committermidipix <writeonce@midipix.org>2017-10-15 10:47:47 -0400
commit3cf872b2308a739c34cd402e0f0bdeec51734f16 (patch)
tree298f72ef33b6782f9ec0b0048479b703dd5ed70b /crt/nt32/crt1.c
parentee93f3978c3c1cb13186ac84faad97970c656a1e (diff)
downloadmmglue-3cf872b2308a739c34cd402e0f0bdeec51734f16.tar.bz2
mmglue-3cf872b2308a739c34cd402e0f0bdeec51734f16.tar.xz
psxglue.h: renamed __PSXOPT_DEBUG --> __PSXOPT_DINGA.
Diffstat (limited to 'crt/nt32/crt1.c')
-rw-r--r--crt/nt32/crt1.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crt/nt32/crt1.c b/crt/nt32/crt1.c
index 13f3c9a..f58af6e 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_debug __attribute((weak,alias("__disabled")));
+extern const int __crtopt_dinga __attribute((weak,alias("__disabled")));
extern const int __crtopt_ldso __attribute((weak,alias("__disabled")));
extern const int __crtopt_vrfs __attribute((weak,alias("__disabled")));
@@ -30,6 +30,6 @@ void start(void)
__libc_entry_routine(
main,
__psx_init,
- __crtopt_posix | __crtopt_debug);
+ __crtopt_posix | __crtopt_dinga);
}