plan9port/src/libdraw/nowsys-itrans.c

24 lines
229 B
C
Raw Normal View History

2006-01-27 04:04:38 +00:00
#include <u.h>
#include <libc.h>
static int
bad(void)
{
sysfatal("compiled with no window system support");
return 0;
}
2005-02-02 22:27:17 +00:00
2006-01-27 04:04:38 +00:00
void
putsnarf(char *data)
{
USED(data);
bad();
}
char*
getsnarf(void)
{
bad();
return nil;
}