summaryrefslogtreecommitdiff
path: root/storage/innobase/include/page0types.h
diff options
context:
space:
mode:
Diffstat (limited to 'storage/innobase/include/page0types.h')
-rw-r--r--storage/innobase/include/page0types.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/storage/innobase/include/page0types.h b/storage/innobase/include/page0types.h
new file mode 100644
index 00000000000..525a0366a6f
--- /dev/null
+++ b/storage/innobase/include/page0types.h
@@ -0,0 +1,22 @@
+/******************************************************
+Index page routines
+
+(c) 1994-1996 Innobase Oy
+
+Created 2/2/1994 Heikki Tuuri
+*******************************************************/
+
+#ifndef page0types_h
+#define page0types_h
+
+#include "univ.i"
+
+/* Type of the index page */
+/* The following define eliminates a name collision on HP-UX */
+#define page_t ib_page_t
+typedef byte page_t;
+typedef struct page_search_struct page_search_t;
+typedef struct page_cur_struct page_cur_t;
+
+
+#endif