ObjFW  Check-in [651b363221]

Overview
Comment:runtime/linklib: Fix editing via macro gone wrong
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 651b363221ebb1092f6bf2a452e857f59246ab63cf753318f4b73ca3a381c1a5
User & Date: js on 2019-06-27 21:27:39
Other Links: manifest | tags
Context
2019-06-27
23:01
configure: Don't use -g with amiga-gcc check-in: ceed953f64 user: js tags: trunk
21:27
runtime/linklib: Fix editing via macro gone wrong check-in: 651b363221 user: js tags: trunk
19:24
runtime: Switch MorphOS library to SysV ABI check-in: 7138892706 user: js tags: trunk
Changes

Modified src/runtime/linklib/linklib.m from [fd0b2b3bf0] to [1e64ea6ef5].

363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
id
objc_retainAutoreleasedReturnValue(id object)
{
	return glue_objc_retainAutoreleasedReturnValue(object);
}

id
objc_linklib_objc_storeStrong(id *object, id value)
{
	return glue_objc_storeStrong(object, value);
}

id
objc_storeWeak(id *object, id value)
{







|







363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
id
objc_retainAutoreleasedReturnValue(id object)
{
	return glue_objc_retainAutoreleasedReturnValue(object);
}

id
objc_storeStrong(id *object, id value)
{
	return glue_objc_storeStrong(object, value);
}

id
objc_storeWeak(id *object, id value)
{