ObjFW  Diff

Differences From Artifact [3fb6075d12]:

To Artifact [530a78c11e]:


465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
	objc_autoreleasePoolPop(pool);

	[runLoop run];
}

- (void)terminate
{
	exit(0);
}

- (void)terminateWithStatus: (int)status
{
	exit(status);
}
@end







|







465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
	objc_autoreleasePoolPop(pool);

	[runLoop run];
}

- (void)terminate
{
	exit(EXIT_SUCCESS);
}

- (void)terminateWithStatus: (int)status
{
	exit(status);
}
@end