Add regexp error handler. Fixes issue #152.

This commit is contained in:
Kris Maglione 2009-11-03 20:51:17 -05:00
parent 59bf7023dd
commit 079fc4c43c

View File

@ -156,6 +156,11 @@ ErrorCode ignored_xerrors[] = {
{ 0, } { 0, }
}; };
void
regerror(char *err) {
fprint(2, "%s: %s\n", argv0, err);
}
void void
init_screens(void) { init_screens(void) {
Rectangle *rects; Rectangle *rects;