/**************************************************************************/
/* mmglue: midipix architecture- and target-specific bits for musl libc */
/* Copyright (C) 2013--2023 SysDeer Technologies, LLC */
/* Released under GPLv2 and GPLv3; see COPYING.MMGLUE. */
/**************************************************************************/
/****************************************/
/* dynamically linked applications only */
/* see also: Scrt1.c */
/****************************************/
#define __external_routine __attribute__((dllimport))
__external_routine int __psx_init(int *,char ***,char ***,void *);
__external_routine void __libc_entry_routine(void *,void *,const unsigned short *,int);
void __libc_loader_init(void * __main, int flags)
{
__libc_entry_routine(__main,__psx_init,0,flags);
}