Index: src/linklib/init.m ================================================================== --- src/linklib/init.m +++ src/linklib/init.m @@ -105,11 +105,11 @@ void *__objc_class_name_OFMutableString; void *__objc_class_name_OFMutableTarArchiveEntry; void *__objc_class_name_OFMutableTriple; void *__objc_class_name_OFMutableURI; void *__objc_class_name_OFMutableZIPArchiveEntry; -void *__objc_class_name_OFNotification +void *__objc_class_name_OFNotification; void *__objc_class_name_OFNotificationCenter; void *__objc_class_name_OFNull; void *__objc_class_name_OFNumber; void *__objc_class_name_OFObject; void *__objc_class_name_OFOptionsParser; @@ -308,12 +308,10 @@ struct OFLibC libC = { .malloc = malloc, .calloc = calloc, .realloc = realloc, .free = free, - .vfprintf = vfprintf, - .fflush = fflush, .abort = abort, #ifdef HAVE_SJLJ_EXCEPTIONS ._Unwind_SjLj_RaiseException = _Unwind_SjLj_RaiseException, #else ._Unwind_RaiseException = _Unwind_RaiseException, @@ -401,15 +399,15 @@ extern void OFPBKDF2Wrapper(const OFPBKDF2Parameters *parameters); extern void OFScryptWrapper(const OFScryptParameters *parameters); void -OFPBKDF2(OFPBKDF2Parameters *parameters) +OFPBKDF2(OFPBKDF2Parameters parameters) { OFPBKDF2Wrapper(¶meters); } void -OFScrypt(OFScryptParameters *parameters) +OFScrypt(OFScryptParameters parameters) { OFScryptWrapper(¶meters); }