minix/minix/commands/cawf/regerror.c
Jacob Adams d9494baa34 cawf: Update K&R function declarations
Change-Id: Ib18171089c7b389f7f2643d7298f9659e882f65c
2015-05-18 15:20:39 +02:00

16 lines
296 B
C

#include <stdio.h>
#include "regexp.h"
#include "proto.h"
void regerror(char *s) {
#ifndef DOSPORT
#ifdef ERRAVAIL
error("regexp: %s", s);
#else
fprintf(stderr, "regexp(3): %s", s);
exit(1);
#endif
/* NOTREACHED */
#endif /* ifdef'd out for less's sake when reporting error inside less */
}