diff options
Diffstat (limited to 'src/include/storage/item.h')
-rw-r--r-- | src/include/storage/item.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/include/storage/item.h b/src/include/storage/item.h new file mode 100644 index 0000000..cb43965 --- /dev/null +++ b/src/include/storage/item.h @@ -0,0 +1,19 @@ +/*------------------------------------------------------------------------- + * + * item.h + * POSTGRES disk item definitions. + * + * + * Portions Copyright (c) 1996-2021, PostgreSQL Global Development Group + * Portions Copyright (c) 1994, Regents of the University of California + * + * src/include/storage/item.h + * + *------------------------------------------------------------------------- + */ +#ifndef ITEM_H +#define ITEM_H + +typedef Pointer Item; + +#endif /* ITEM_H */ |