Files
2015-04-16 09:16:48 +02:00

15 lines
184 B
C

#define _KERNEL
#include "ixemul.h"
#include <stdio.h>
#include <wchar.h>
#undef putwchar
wint_t putwchar(wchar_t c)
{
usetup;
register FILE *so = stdout;
return putwc(c, so);
}