ObjFW  Check-in [08606a8804]

Overview
Comment:Add missing of_log to linklib
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | amiga-library
Files: files | file ages | folders
SHA3-256: 08606a8804724c9e1423071af68860b582d4fdbcfdcccc91a2c17672a60af512
User & Date: js on 2020-06-21 22:46:45
Other Links: branch diff | manifest | tags
Context
2020-07-06
23:50
Merge trunk into branch "amiga-library" check-in: c536c268a0 user: js tags: amiga-library
2020-06-21
22:46
Add missing of_log to linklib check-in: 08606a8804 user: js tags: amiga-library
22:26
Adjust Amiga library to new of_{pbkdf2,scrypt} API check-in: f8f3bc1545 user: js tags: amiga-library
Changes

Modified src/linklib/linklib.m from [3aa1c94d52] to [ee9dff4839].

425
426
427
428
429
430
431










432
433
434
435
436
437
438
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448







+
+
+
+
+
+
+
+
+
+







}

OFStdIOStream **
of_stderr_ref(void)
{
	return glue_of_stderr_ref();
}

void
of_log(OFConstantString *format, ...)
{
	va_list arguments;

	va_start(arguments, format);
	glue_of_logv(format, arguments);
	va_end(arguments);
}

void
of_logv(OFConstantString *format, va_list arguments)
{
	glue_of_logv(format, arguments);
}