mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-15 11:20:03 +00:00
22 lines
228 B
C
22 lines
228 B
C
#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)
|
|
{
|
|
bad();
|
|
}
|