diff options
author | Bruce Momjian | 2006-07-10 21:03:58 +0000 |
---|---|---|
committer | Bruce Momjian | 2006-07-10 21:03:58 +0000 |
commit | f0cd7647234b028d25cfd53c9376320e0ef9799b (patch) | |
tree | 53f0ef8d58748478f51e832255153f5d5280d3d1 /contrib/btree_gist/btree_utils_num.h | |
parent | 97c3fcd9b7585abd208fdae424814df47a896d73 (diff) |
Add #include code to prevent multiple inclusion.
Diffstat (limited to 'contrib/btree_gist/btree_utils_num.h')
-rw-r--r-- | contrib/btree_gist/btree_utils_num.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/contrib/btree_gist/btree_utils_num.h b/contrib/btree_gist/btree_utils_num.h index 0f59342d965..b2eb5dc869a 100644 --- a/contrib/btree_gist/btree_utils_num.h +++ b/contrib/btree_gist/btree_utils_num.h @@ -1,3 +1,6 @@ +#ifndef __BTREE_UTILS_NUM_H__ +#define __BTREE_UTILS_NUM_H__ + #include "btree_gist.h" typedef char GBT_NUMKEY; @@ -101,3 +104,5 @@ extern bool gbt_num_same(const GBT_NUMKEY * a, const GBT_NUMKEY * b, extern void gbt_num_bin_union(Datum *u, GBT_NUMKEY * e, const gbtree_ninfo * tinfo); + +#endif |