summaryrefslogtreecommitdiffhomepage
path: root/crt/nt32/crtidata.c
blob: 6037c25114c15f9648e496fdc0a4519162076da0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/****************************************/
/* dynamically linked applications only */
/* see also: Scrt1.c                    */
/****************************************/

#include "psxglue.h"

#define __external_routine __attribute__((dllimport))

__external_routine
__psx_init_routine __psx_init;

__psx_init_routine * __psx_init_fn(void)
{
	return __psx_init;
}