blob: 77a78b9b31c3836914075d1d164cf13105a5079e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
/*****************************************************************************/
/* dalist: a zero-dependency book-keeping library */
/* Copyright (C) 2013--2021 SysDeer Technologies, LLC */
/* Released under GPLv2 and GPLv3; see COPYING.DALIST. */
/*****************************************************************************/
#ifdef _MIDIPIX_FREESTANDING
#include <dalist/dalist.h>
#include <psxtypes/section/freestd.h>
__attr_section_decl__(".freestd")
static const void * const dalist_affiliation
__attr_section__(".freestd")
= 0;
int __stdcall __attr_protected__ dalist_entry_point(
void * hinstance,
uint32_t reason,
void * reserved)
{
(void)dalist_affiliation;
(void)hinstance;
(void)reason;
(void)reserved;
return 1;
}
#endif
|