#include <9pm/windows.h>
#include <9pm/u.h>
#include <9pm/libc.h>

BOOL WINAPI
TextOut(HDC hdc, int x, int y, LPCWSTR s, int n)
{
	/* TextOutW is implemented on Windows 95 */
	return TextOutW(hdc, x, y, s, n);
}



syntax highlighted by Code2HTML, v. 0.9.1