diff options
author | Johannes Winkelmann <jw@smts.ch> | 2010-05-24 15:38:19 +0200 |
---|---|---|
committer | Johannes Winkelmann <jw@smts.ch> | 2010-05-24 15:38:19 +0200 |
commit | 6efb296e9b2e686a8c9d22403911fe2fbecc8906 (patch) | |
tree | 09f813cbec3fde3a4d119cd9b78ee278d39188b6 | |
parent | 7c8a9b2ae5884cc8a15e31954768befdfd9442fe (diff) | |
download | prt-get-6efb296e9b2e686a8c9d22403911fe2fbecc8906.tar.gz prt-get-6efb296e9b2e686a8c9d22403911fe2fbecc8906.tar.xz |
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
-rw-r--r-- | src/pg_regex.h | 4 |
1 files 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 <sys/types.h> #include <regex.h> |