mirror of
https://github.com/postgres/postgres.git
synced 2026-03-06 07:15:44 -05:00
18 lines
418 B
C
18 lines
418 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* item.h--
|
|
* POSTGRES disk item definitions.
|
|
*
|
|
*
|
|
* Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: item.h,v 1.3 1997/09/07 05:01:16 momjian Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef ITEM_H
|
|
#define ITEM_H
|
|
|
|
typedef Pointer Item;
|
|
|
|
#endif /* ITEM_H */
|