more nowsys

This commit is contained in:
rsc 2005-02-02 22:27:17 +00:00
parent 52fdc1a547
commit c4553e9cd0
8 changed files with 250 additions and 0 deletions

View file

@ -0,0 +1,24 @@
#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();
}