summaryrefslogtreecommitdiff
path: root/src/backend/storage/page.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/storage/page.h')
-rw-r--r--src/backend/storage/page.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/backend/storage/page.h b/src/backend/storage/page.h
deleted file mode 100644
index a012ea522c0..00000000000
--- a/src/backend/storage/page.h
+++ /dev/null
@@ -1,26 +0,0 @@
-/*-------------------------------------------------------------------------
- *
- * page.h--
- * POSTGRES buffer page abstraction definitions.
- *
- *
- * Copyright (c) 1994, Regents of the University of California
- *
- * $Id: page.h,v 1.1.1.1 1996/07/09 06:21:53 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 */