mirror of
https://github.com/postgres/postgres.git
synced 2026-04-12 20:46:42 -04:00
24 lines
527 B
C
24 lines
527 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* page.h--
|
|
* POSTGRES buffer page abstraction definitions.
|
|
*
|
|
*
|
|
* Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: page.h,v 1.2 1996/10/31 09:49:59 scrappy Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef PAGE_H
|
|
#define PAGE_H
|
|
|
|
typedef Pointer Page;
|
|
|
|
/*
|
|
* PageIsValid --
|
|
* True iff page is valid.
|
|
*/
|
|
#define PageIsValid(page) PointerIsValid(page)
|
|
|
|
#endif /* PAGE_H */
|