ObjFW  Diff

Differences From Artifact [cbe13c4c89]:

To Artifact [a831aab769]:


462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483

int
fflush(FILE *restrict stream)
{
	return libc.fflush(stream);
}

void
exit(int status)
{
	libc.exit(status);

	OF_UNREACHABLE
}

void
abort(void)
{
	libc.abort();

	OF_UNREACHABLE
}







<
<
<
<
<
<
<
<







462
463
464
465
466
467
468








469
470
471
472
473
474
475

int
fflush(FILE *restrict stream)
{
	return libc.fflush(stream);
}









void
abort(void)
{
	libc.abort();

	OF_UNREACHABLE
}