summaryrefslogtreecommitdiff
path: root/src/backend/regex/regexec.c
diff options
context:
space:
mode:
authorMarc G. Fournier1996-09-20 08:34:39 +0000
committerMarc G. Fournier1996-09-20 08:34:39 +0000
commit07d3112d172eb06217f6b0da05fb6bcadf46cff8 (patch)
tree1fc1c53f4ff7455432bb39c527c03869d6631ce4 /src/backend/regex/regexec.c
parent87660d71c38785e6405a257e5039cb0bb375b79b (diff)
Various patches from Bryan that *should* clean up the compile problems
ppl are seeing with v2.0
Diffstat (limited to 'src/backend/regex/regexec.c')
-rw-r--r--src/backend/regex/regexec.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/regex/regexec.c b/src/backend/regex/regexec.c
index 65fda30ff2..a34f3f8daf 100644
--- a/src/backend/regex/regexec.c
+++ b/src/backend/regex/regexec.c
@@ -54,10 +54,10 @@ static char sccsid[] = "@(#)regexec.c 8.3 (Berkeley) 3/20/94";
#include <string.h>
#include <limits.h>
#include <ctype.h>
-#include <regex.h>
-#include "regex/utils.h"
-#include "regex/regex2.h"
+#include <regex/regex.h>
+#include <regex/utils.h>
+#include <regex/regex2.h>
static int nope = 0; /* for use in asserts; shuts lint up */