You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
357 B
18 lines
357 B
#include "std.h"
|
|
#include <stdarg.h>
|
|
#include "stdio.h"
|
|
|
|
void std_printf(const char* format, ... ) {
|
|
va_list arglist;
|
|
va_start( arglist, format );
|
|
vprintf( format, arglist );
|
|
va_end(arglist);
|
|
}
|
|
|
|
void err_printf(const char* format, ... ) {
|
|
va_list arglist;
|
|
va_start( arglist, format );
|
|
vfprintf( stderr, format, arglist );
|
|
va_end(arglist);
|
|
}
|