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.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/crt/nt64/crt1.c b/crt/nt64/crt1.c
index 6f08278..0d319a1 100644
--- a/crt/nt64/crt1.c
+++ b/crt/nt64/crt1.c
@@ -19,8 +19,7 @@ extern const int __crtopt_vrfs __attribute((weak,alias("__disabled")));
int main();
-__external_routine
-__psx_init_routine __psx_init;
+__psx_init_routine * __psx_init_fn(void);
__external_routine
void __libc_entry_routine(void *,void *,int);
@@ -29,7 +28,6 @@ void _start(void)
{
__libc_entry_routine(
main,
- __psx_init,
+ __psx_init_fn(),
__crtopt_posix | __crtopt_dinga);
}
-