plan9port/src/libdraw/nowsys-wsys.c

23 lines
228 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)
2005-11-12 16:36:48 +00:00
{
2005-02-02 22:27:17 +00:00
bad();
}