Blame src/internal/pe_entry_point.c

feffc7
#include <psxtypes/psxtypes.h>
eb6b77
#include <psxtypes/section/freestd.h>
feffc7
eb6b77
__attr_section_decl__(".freestd")
ab2a36
static const void * const pe_affiliation
ab2a36
	__attr_section__(".freestd")
ab2a36
	= 0;
ab2a36
6c37e4
#ifdef  PE_LDSO
6c37e4
#define pe_entry_point __ldso_entry_point
6c37e4
#endif
6c37e4
279e96
int __stdcall __attr_protected__ pe_entry_point(
279e96
	void *   hinstance,
279e96
	uint32_t reason,
279e96
	void *   reserved)
feffc7
{
ab2a36
	(void)pe_affiliation;
90e9fb
	(void)hinstance;
90e9fb
	(void)reason;
90e9fb
	(void)reserved;
90e9fb
feffc7
	return 1;
feffc7
}