From 59eb4f6aa04c49d4983350ade529d6106aa991e6 Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Thu, 3 Jun 2010 11:28:54 +0200 Subject: [PATCH] include guards --- sql/table.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sql/table.h b/sql/table.h index a61108bbaff..1424414ade8 100644 --- a/sql/table.h +++ b/sql/table.h @@ -13,6 +13,8 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ +#ifndef SQL_TABLE_INCLUDED +#define SQL_TABLE_INCLUDED /* Structs that defines the TABLE */ @@ -1819,3 +1821,4 @@ static inline void dbug_tmp_restore_column_maps(MY_BITMAP *read_set, size_t max_row_length(TABLE *table, const uchar *data); +#endif