Blob


1 #include <u.h>
2 #include <libc.h>
4 static int
5 bad(void)
6 {
7 sysfatal("compiled with no window system support");
8 return 0;
9 }
11 void
12 putsnarf(char *data)
13 {
14 USED(data);
15 bad();
16 }
18 char*
19 getsnarf(void)
20 {
21 bad();
22 return nil;
23 }