Sign in
plan9port
/
plan9
/
efe08bf8fde1684ae8b1a2895d02fbb59f25d68a
/
.
/
src
/
libdraw
/
nowsys-itrans.c
blob: 8c60c6bf2c597b0326a020822b824151e763ca42 [
file
] [
log
] [
blame
]
#include
<u.h>
#include
<libc.h>
static
int
bad
(
void
)
{
sysfatal
(
"compiled with no window system support"
);
return
0
;
}
void
putsnarf
(
char
*
data
)
{
USED
(
data
);
bad
();
}
char
*
getsnarf
(
void
)
{
bad
();
return
nil
;
}