ref: 1a5cf98c99fa20d0dd0768cd9c61fab84c2a77f8
dir: /sys/src/libregexp/regerror.c/
#include <u.h> #include <libc.h> #include "regexp.h" void regerror(char *s) { char buf[132]; strcpy(buf, "regerror: "); strcat(buf, s); strcat(buf, "\n"); write(2, buf, strlen(buf)); exits("regerr"); }