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;
}