ref: 059c85dd75f4790625ea3ba19f1c76cf2f3e6b4a
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"); }