You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
291 B
Objective-C

#include <stdio.h>
#include <stdlib.h>
// This function is exported as a weak symbol to enable GNUstep or some other
// framework to replace it trivially
void __attribute__((weak)) objc_enumerationMutation(void *obj)
{
fprintf(stderr, "Mutation occured during enumeration.");
abort();
}