Initial commit at Mon May 18 09:27:46 EDT 2015 by tim on stravinsky

This commit is contained in:
Tim Edwards
2015-05-18 09:27:46 -04:00
commit d5e9f81cb0
129 changed files with 65358 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
#include <stdio.h>
void
regerror(s)
char *s;
{
#ifdef ERRAVAIL
error("regexp: %s", s);
#else
fprintf(stderr, "regexp(3): %s", s);
exit(1);
#endif
/* NOTREACHED */
}