aboutsummaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/regexp.c
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1999-07-15 23:04:24 +0000
committerBruce Momjian <bruce@momjian.us>1999-07-15 23:04:24 +0000
commita9591ce66aa69e82196800b0f4f7b6e35aea8e49 (patch)
tree297fe17b4ac326fa1078134f10099c074e4052e0 /src/backend/utils/adt/regexp.c
parent2e6b1e63a3f4990594af94afe1b3cef90ae752b5 (diff)
downloadpostgresql-a9591ce66aa69e82196800b0f4f7b6e35aea8e49.tar.gz
postgresql-a9591ce66aa69e82196800b0f4f7b6e35aea8e49.zip
Change #include's to use <> and "" as appropriate.
Diffstat (limited to 'src/backend/utils/adt/regexp.c')
-rw-r--r--src/backend/utils/adt/regexp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/utils/adt/regexp.c b/src/backend/utils/adt/regexp.c
index c53b5350119..9a30652a5ee 100644
--- a/src/backend/utils/adt/regexp.c
+++ b/src/backend/utils/adt/regexp.c
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/utils/adt/regexp.c,v 1.24 1999/07/15 15:20:19 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/utils/adt/regexp.c,v 1.25 1999/07/15 23:03:27 momjian Exp $
*
* Alistair Crooks added the code for the regex caching
* agc - cached the regular expressions used - there's a good chance
@@ -30,7 +30,7 @@
#include <string.h>
#include "postgres.h" /* postgres system include file */
-#include <regex/regex.h>
+#include "regex/regex.h"
#include "utils/builtins.h" /* where the function declarations go */