Blob Blame History Raw
#include <psxtypes/psxtypes.h>
#include <psxtypes/section/freestd.h>

__attr_section_decl__(".freestd")
static const void * const pe_affiliation
	__attr_section__(".freestd")
	= 0;

int __stdcall pe_entry_point(void * hinstance, uint32_t reason, void * reserved)
{
	(void)pe_affiliation;
	(void)hinstance;
	(void)reason;
	(void)reserved;

	return 1;
}