Sign in
plan9port
/
plan9
/
a1ad1acf25897fb9ee02d7fc5bf4fff710f01c1d
/
.
/
src
/
libdraw
/
nowsys-wsys.c
blob: 2127dca03d5f873487cd95fecb12185f1b8fb632 [
file
]
#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
();
}