ref: 84f6061a92d92f6f0136f7d6ab42fa03c38d5a78
dir: /sys/src/ape/lib/regexp/regerror.c/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "regexp.h"
void
regerror(char *s)
{
char buf[132];
strcpy(buf, "regerror: ");
strcat(buf, s);
strcat(buf, "\n");
fwrite(buf, 1, strlen(buf), stderr);
exit(1);
}