git: 9front

ref: abb18ee9881bf8bee6b64dadd964b7dcc1c58af7
dir: /sys/src/ape/lib/regexp/regerror.c/

View raw version
#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);
}