1
0
mirror of https://github.com/postgres/postgres.git synced 2025-09-02 04:21:28 +03:00

Added needed include file.

This commit is contained in:
Bruce Momjian
1996-10-31 05:58:01 +00:00
parent 7a93da98af
commit 3d7fe6c97c
14 changed files with 34 additions and 13 deletions

View File

@@ -6,13 +6,15 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: attnum.h,v 1.2 1996/08/28 01:23:59 scrappy Exp $
* $Id: attnum.h,v 1.3 1996/10/31 05:56:34 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef ATTNUM_H
#define ATTNUM_H
#include "postgres.h"
/*
* user defined attribute numbers start at 1. -ay 2/95
*/

View File

@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: libpq.h,v 1.3 1996/10/23 07:41:41 scrappy Exp $
* $Id: libpq.h,v 1.4 1996/10/31 05:56:42 momjian Exp $
*
* NOTES
* This file contains definitions for structures and
@@ -19,6 +19,7 @@
#ifndef LIBPQ_H
#define LIBPQ_H
#include <sys/types.h>
#include <netinet/in.h>
#include "libpq/pqcomm.h"

View File

@@ -40,6 +40,8 @@
#ifndef _REGEX_H_
#define _REGEX_H_
#include <assert.h>
/* #include <sys/cdefs.h> */
/* since not all systems have cdefs.h, we'll use our own here - jolly */
#include "cdefs.h"

View File

@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: ipc.h,v 1.4 1996/10/19 06:27:12 scrappy Exp $
* $Id: ipc.h,v 1.5 1996/10/31 05:57:40 momjian Exp $
*
* NOTES
* This file is very architecture-specific. This stuff should actually
@@ -23,6 +23,8 @@
#include <sys/types.h>
#include "postgres.h"
/*
* Many architectures have support for user-level spinlocks (i.e., an
* atomic test-and-set instruction). However, we have only written

View File

@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: proc.h,v 1.1 1996/08/28 01:58:24 scrappy Exp $
* $Id: proc.h,v 1.2 1996/10/31 05:57:45 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -16,6 +16,7 @@
#include "storage/ipc.h"
#include "storage/lock.h"
#ifndef WIN32
#include <sys/ipc.h>
#include <sys/sem.h>
#else
/* This is because WIN32 already defines PROC */

View File

@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: syscache.h,v 1.2 1996/10/19 04:16:04 scrappy Exp $
* $Id: syscache.h,v 1.3 1996/10/31 05:58:01 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -14,6 +14,7 @@
#define SYSCACHE_H
#include "access/attnum.h"
#include "access/htup.h"
/*#define CACHEDEBUG*/ /* turns DEBUG elogs on */