blob: 1063b9722d25b29b00b1f23711f56ed3fabb0942 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* $OpenBSD: regerror.c,v 1.2 1996/07/24 05:39:11 downsj Exp $ */
#ifndef lint
static char *rcsid = "$OpenBSD: regerror.c,v 1.2 1996/07/24 05:39:11 downsj Exp $";
#endif /* not lint */
#include <regexp.h>
#include <stdio.h>
void
v8_regerror(s)
const char *s;
{
warnx(s);
return;
}
|