summaryrefslogtreecommitdiff
path: root/src/include/storage/page.h
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1996-08-28 01:59:28 +0000
committerMarc G. Fournier <scrappy@hub.org>1996-08-28 01:59:28 +0000
commit105409746499657acdffc109db9d343b464bda1f (patch)
treead73a9b45b4500ddedb5b7d18edcf90ec7cb35c5 /src/include/storage/page.h
parentca405ae4bf50a0074cf6e7ffb4873d5c9a861403 (diff)
downloadpostgresql-105409746499657acdffc109db9d343b464bda1f.tar.gz
More cleanups of the include files
- centralizing to simplify the -I's required to compile
Diffstat (limited to 'src/include/storage/page.h')
-rw-r--r--src/include/storage/page.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/include/storage/page.h b/src/include/storage/page.h
new file mode 100644
index 0000000000..aee623f369
--- /dev/null
+++ b/src/include/storage/page.h
@@ -0,0 +1,26 @@
+/*-------------------------------------------------------------------------
+ *
+ * page.h--
+ * POSTGRES buffer page abstraction definitions.
+ *
+ *
+ * Copyright (c) 1994, Regents of the University of California
+ *
+ * $Id: page.h,v 1.1 1996/08/28 01:58:20 scrappy Exp $
+ *
+ *-------------------------------------------------------------------------
+ */
+#ifndef PAGE_H
+#define PAGE_H
+
+#include "c.h"
+
+typedef Pointer Page;
+
+/*
+ * PageIsValid --
+ * True iff page is valid.
+ */
+#define PageIsValid(page) PointerIsValid(page)
+
+#endif /* PAGE_H */