From f0cd7647234b028d25cfd53c9376320e0ef9799b Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Mon, 10 Jul 2006 21:03:58 +0000 Subject: Add #include code to prevent multiple inclusion. --- contrib/btree_gist/btree_utils_num.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'contrib/btree_gist/btree_utils_num.h') diff --git a/contrib/btree_gist/btree_utils_num.h b/contrib/btree_gist/btree_utils_num.h index 0f59342d96..b2eb5dc869 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 -- cgit v1.2.1