@@ -61,11 +61,11 @@ @end static OFApplication *app = nil; static void -atexit_handler(void) +atexitHandler(void) { id delegate = [app delegate]; if ([delegate respondsToSelector: @selector(applicationWillTerminate)]) [delegate applicationWillTerminate]; @@ -178,11 +178,11 @@ char *env; #endif environment = [[OFMutableDictionary alloc] init]; - atexit(atexit_handler); + atexit(atexitHandler); #if defined(_WIN32) env = GetEnvironmentStringsW(); while (*env != 0) { OFString *tmp, *key, *value;