diff options
author | Tatsuo Ishii <ishii@postgresql.org> | 2001-02-22 04:35:00 +0000 |
---|---|---|
committer | Tatsuo Ishii <ishii@postgresql.org> | 2001-02-22 04:35:00 +0000 |
commit | a0fa71837afa2ab986ae4643da96de597e65b79a (patch) | |
tree | 4d3f10503c61951d0493aec0c58a01271ea79632 | |
parent | 74b0a18b6ba3275506c19e4c932bb4d85a10dd5f (diff) | |
download | postgresql-a0fa71837afa2ab986ae4643da96de597e65b79a.tar.gz postgresql-a0fa71837afa2ab986ae4643da96de597e65b79a.zip |
Add _REGEX_UTILS_H to avoid duplication.
-rw-r--r-- | src/include/regex/utils.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/include/regex/utils.h b/src/include/regex/utils.h index 72f89dcafc2..4bf6d9eace5 100644 --- a/src/include/regex/utils.h +++ b/src/include/regex/utils.h @@ -37,6 +37,9 @@ * @(#)utils.h 8.3 (Berkeley) 3/20/94 */ +#ifndef _REGEX_UTILS_H +#define _REGEX_UTILS_H + #include <limits.h> /* utility definitions */ @@ -57,3 +60,5 @@ typedef unsigned char uch; #define NDEBUG /* no assertions please */ #endif #endif + +#endif /* _REGEX_UTILS_H */ |