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