ObjFW  Check-in [96bd5ebd99]

Overview
Comment:runtime/linklib: Remove spurious ;
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 96bd5ebd99ddbd57712ee7b2ba3c1381048151f8fc20397693db414406f18378
User & Date: js on 2022-06-12 20:38:48
Other Links: manifest | tags
Context
2022-06-13
14:46
OFMutableAdjacentArray: Fix shadowing of variable check-in: 3cf82a5618 user: js tags: trunk
2022-06-12
20:38
runtime/linklib: Remove spurious ; check-in: 96bd5ebd99 user: js tags: trunk
20:25
README.md: Add "Thanks" section check-in: a0e4be5fb9 user: js tags: trunk
Changes

Modified src/runtime/linklib/init.m from [260b346241] to [6ddafedf04].

149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
static void __attribute__((__used__))
dtor(void)
{
	CloseLibrary(ObjFWRTBase);
}

#if defined(OF_AMIGAOS_M68K)
ADD2INIT(ctor, -5);
ADD2EXIT(dtor, -5);
#elif defined(OF_MORPHOS)
CONSTRUCTOR_P(ObjFWRT, 4000)
{
	ctor();

	return 0;
}







|
|







149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
static void __attribute__((__used__))
dtor(void)
{
	CloseLibrary(ObjFWRTBase);
}

#if defined(OF_AMIGAOS_M68K)
ADD2INIT(ctor, -5)
ADD2EXIT(dtor, -5)
#elif defined(OF_MORPHOS)
CONSTRUCTOR_P(ObjFWRT, 4000)
{
	ctor();

	return 0;
}