aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
Diffstat (limited to 'src/include')
-rw-r--r--src/include/access/attnum.h4
-rw-r--r--src/include/libpq/libpq.h3
-rw-r--r--src/include/regex/regex.h2
-rw-r--r--src/include/storage/ipc.h4
-rw-r--r--src/include/storage/proc.h3
-rw-r--r--src/include/utils/syscache.h3
6 files changed, 14 insertions, 5 deletions
diff --git a/src/include/access/attnum.h b/src/include/access/attnum.h
index f695db18ea2..e0c1c1f2037 100644
--- a/src/include/access/attnum.h
+++ b/src/include/access/attnum.h
@@ -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
*/
diff --git a/src/include/libpq/libpq.h b/src/include/libpq/libpq.h
index d49c644e590..b8243019f70 100644
--- a/src/include/libpq/libpq.h
+++ b/src/include/libpq/libpq.h
@@ -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"
diff --git a/src/include/regex/regex.h b/src/include/regex/regex.h
index fd5484f13fb..8944cf1b062 100644
--- a/src/include/regex/regex.h
+++ b/src/include/regex/regex.h
@@ -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"
diff --git a/src/include/storage/ipc.h b/src/include/storage/ipc.h
index 9ee9ef5b9a3..e5baf1c2dbe 100644
--- a/src/include/storage/ipc.h
+++ b/src/include/storage/ipc.h
@@ -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
diff --git a/src/include/storage/proc.h b/src/include/storage/proc.h
index 36dd928d397..2a73757a951 100644
--- a/src/include/storage/proc.h
+++ b/src/include/storage/proc.h
@@ -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 */
diff --git a/src/include/utils/syscache.h b/src/include/utils/syscache.h
index 2bc34bc4e4e..efd223cdeb7 100644
--- a/src/include/utils/syscache.h
+++ b/src/include/utils/syscache.h
@@ -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 */