From 6efb296e9b2e686a8c9d22403911fe2fbecc8906 Mon Sep 17 00:00:00 2001 From: Johannes Winkelmann Date: Mon, 24 May 2010 15:38:19 +0200 Subject: [PATCH] rename inclusion guards in pg_regex.h some OSes use _REGEX_H_ as their inclusion guard for system regex headers; therefore, rather use _PG_REGEX_H_ in pg_regex.h, which is also consistent with the filename --- src/pg_regex.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pg_regex.h b/src/pg_regex.h index 8d8209b..7714017 100644 --- a/src/pg_regex.h +++ b/src/pg_regex.h @@ -10,8 +10,8 @@ //////////////////////////////////////////////////////////////////////// -#ifndef _REGEX_H_ -#define _REGEX_H_ +#ifndef _PG_REGEX_H_ +#define _PG_REGEX_H_ #include #include