15 lines
168 B
C
15 lines
168 B
C
|
|
#include <u.h>
|
||
|
|
#include <libc.h>
|
||
|
|
#include <draw.h>
|
||
|
|
|
||
|
|
int
|
||
|
|
iprint(char *fmt, ...)
|
||
|
|
{
|
||
|
|
va_list arg;
|
||
|
|
|
||
|
|
va_start(arg, fmt);
|
||
|
|
vfprint(1, fmt, arg);
|
||
|
|
va_end(arg);
|
||
|
|
return 0;
|
||
|
|
}
|