tregerror.c - plan9port - [fork] Plan 9 from user space
HTML git clone git://src.adamsgaard.dk/plan9port
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
tregerror.c (196B)
---
1 #include "lib9.h"
2 #include "regexp9.h"
3
4 void
5 regerror(char *s)
6 {
7 char buf[132];
8
9 strcpy(buf, "regerror: ");
10 strcat(buf, s);
11 strcat(buf, "\n");
12 write(2, buf, strlen(buf));
13 exits("regerr");
14 }