ObjFW  Diff

Differences From Artifact [fdc1473cd0]:

To Artifact [7e963b1641]:


559
560
561
562
563
564
565












566













567
568

569
570
571
572
573

574
575
576
577
578
579





580
581
582
583
584
585
586
int
vsnprintf(char *restrict str, size_t size, const char *restrict fmt,
    va_list args)
{
	return libC.vsnprintf(str, size, fmt, args);
}













#ifdef OF_AMIGAOS_M68K













int
sscanf(const char *restrict str, const char *restrict fmt, ...)

{
	int ret;
	va_list args;

	va_start(args, fmt);

	ret = libC.vsscanf(str, fmt, args);
	va_end(args);

	return ret;
}
#endif






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

	OF_UNREACHABLE







>
>
>
>
>
>
>
>
>
>
>
>
|
>
>
>
>
>
>
>
>
>
>
>
>
>

<
>

|
<
|
|
>
|
<
|
|

|
>
>
>
>
>







559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592

593
594
595

596
597
598
599

600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
int
vsnprintf(char *restrict str, size_t size, const char *restrict fmt,
    va_list args)
{
	return libC.vsnprintf(str, size, fmt, args);
}

float
strtof(const char *str, char **endptr)
{
	return libC.strtof(str, endptr);
}

double
strtod(const char *str, char **endptr)
{
	return libC.strtod(str, endptr);
}

#ifdef OF_MORPHOS
struct tm *
gmtime_r(const time_t *time, struct tm *tm)
{
	return libC.gmtime_r(time, tm);
}

struct tm *
localtime_r(const time_t *time, struct tm *tm)
{
	return libC.localtime_r(time, tm);
}
#endif

int

gettimeofday(struct timeval *tv, struct timezone *tz)
{
	return libC.gettimeofday(tv, tz);

}

time_t
mktime(struct tm *tm)

{
	return libC.mktime(tm);
}

size_t
strftime(char *str, size_t len, const char *fmt, const struct tm *tm)
{
	return libC.strftime(str, len, fmt, tm);
}

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

	OF_UNREACHABLE