Fixed compiler warnings

This commit is contained in:
Alex
2022-12-21 20:05:57 +02:00
parent 48e8f0c513
commit cddf0426e3
28 changed files with 483 additions and 81 deletions

View File

@ -13,10 +13,15 @@ EXTERNC void fprintf(FILE *stream, const char *Format, ...)
va_start(args, Format);
vprintf_(Format, args);
va_end(args);
UNUSED(stream);
}
// TODO: Implement proper fputs
EXTERNC void fputs(const char *s, FILE *stream) { printf_("%s", s); }
EXTERNC void fputs(const char *s, FILE *stream)
{
printf_("%s", s);
UNUSED(stream);
}
static struct cag_option ConfigOptions[] = {
{.identifier = 'a',