summaryrefslogtreecommitdiffhomepage
path: root/src/arch/nt64/_dlstart.c
blob: 9f9f989f0babe5e1d9b6b6e69dab6570a4828553 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/**************************************************************************/
/*  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.                   */
/**************************************************************************/

typedef unsigned int uint32_t;

int _dlstart(
	void *		hinstance,
	uint32_t	reason,
	void *		reserved)
{
	return 1;
}