more nowsys
This commit is contained in:
parent
52fdc1a547
commit
c4553e9cd0
8 changed files with 250 additions and 0 deletions
|
|
@ -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();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue