plan9port/src/libdraw/nowsys-wsys.c

25 lines
239 B
C
Raw Normal View History

2005-02-02 22:27:17 +00:00
#include <u.h>
#include <libc.h>
#include <draw.h>
static int
bad(void)
{
sysfatal("compiled with no window system support");
return 0;
}
void
drawtopwindow(void)
{
bad();
}
void
drawresizewindow(Rectangle r)
{
USED(r);
bad();
}