1
0
mirror of https://github.com/postgres/postgres.git synced 2025-10-25 13:17:41 +03:00

Cleanup of /include #include's, for 6.6 only.

This commit is contained in:
Bruce Momjian
1999-07-14 01:20:30 +00:00
parent ad4948862c
commit 0cf1b79528
71 changed files with 143 additions and 109 deletions

View File

@@ -5,15 +5,13 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: async.h,v 1.11 1999/02/13 23:21:17 momjian Exp $
* $Id: async.h,v 1.12 1999/07/14 01:20:11 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef ASYNC_H
#define ASYNC_H
#include <postgres.h>
/* notify-related SQL statements */
extern void Async_Notify(char *relname);
extern void Async_Listen(char *relname, int pid);

View File

@@ -6,13 +6,14 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: dbcommands.h,v 1.8 1999/03/16 03:24:18 momjian Exp $
* $Id: dbcommands.h,v 1.9 1999/07/14 01:20:12 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef DBCOMMANDS_H
#define DBCOMMANDS_H
#include "tcop/dest.h"
/*
* Originally from tmp/daemon.h. The functions declared in daemon.h does not
* exist; hence removed. -- AY 7/29/94

View File

@@ -10,6 +10,9 @@
#ifndef USER_H
#define USER_H
#include "nodes/parsenodes.h"
#include "tcop/dest.h"
extern void DefineUser(CreateUserStmt *stmt, CommandDest);
extern void AlterUser(AlterUserStmt *stmt, CommandDest);
extern void RemoveUser(char *user, CommandDest);

View File

@@ -6,18 +6,20 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: vacuum.h,v 1.20 1999/05/25 22:42:43 momjian Exp $
* $Id: vacuum.h,v 1.21 1999/07/14 01:20:15 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef VACUUM_H
#define VACUUM_H
#include "fmgr.h"
#include "access/funcindex.h"
#include "catalog/pg_index.h"
#include "catalog/pg_attribute.h"
#include "nodes/pg_list.h"
#include "storage/block.h"
#include "storage/itemptr.h"
#include "storage/off.h"