commit 326a461d0e45e96d6f044b7d6413dda9807742bf from: rsc date: Fri Jan 27 04:04:38 2006 UTC nowsys fixes (Lou Kamenov) commit - 2a951f5eb612939f890c09a5293226b673663043 commit + 326a461d0e45e96d6f044b7d6413dda9807742bf blob - 117e1627f2535e105e47add497410bc1f86da3b5 blob + 8c60c6bf2c597b0326a020822b824151e763ca42 --- src/libdraw/nowsys-itrans.c +++ src/libdraw/nowsys-itrans.c @@ -1,3 +1,23 @@ -/* so that there's *something* in this file */ -int __nowsys__itrans(void) {return 0;} +#include +#include + +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; +} blob - bf5500792dc4787e926cb6344d9cf3b78706aef7 blob + af1bf990e7977f7fa4b7c945a650d269c9fcda13 --- src/libdraw/nowsys-mouse.c +++ src/libdraw/nowsys-mouse.c @@ -5,6 +5,7 @@ #include #include +int _wantfocuschanges; static int bad(void) {