- Move source code from `trunk` into program root directory. - Update build files and include paths. - Note: Line endings standardised from `CRLF` > `LF`, so best to view diffs with whitespace changes hidden.
14 lines
225 B
C
14 lines
225 B
C
|
|
#include "sys/ksys.h"
|
|
#include <stdio.h>
|
|
#include <stdarg.h>
|
|
|
|
int fprintf(FILE *restrict f, const char *restrict fmt, ...)
|
|
{
|
|
int ret;
|
|
va_list ap;
|
|
va_start(ap, fmt);
|
|
ret = vfprintf(f, fmt, ap);
|
|
va_end(ap);
|
|
return ret;
|
|
} |