Subversion Repositories shark

Compare Revisions

Regard whitespace Rev 1038 → Rev 1032

/shark/trunk/libc/stdio/printf.c
61,7 → 61,6
int ret;
va_list ap;
#ifdef __SHARK_FS_SUPPORT__
#if __STDC__
va_start(ap, fmt);
#else
68,9 → 67,6
va_start(ap);
#endif
ret = vfprintf(stdout, fmt, ap);
#else
ret = cprintf(fmt, ap); // Remap to the cprintf if the Shark FS is not present
#endif
va_end(ap);
return (ret);
}