aboutsummaryrefslogtreecommitdiff
path: root/src/backend/utils/init/postinit.c
diff options
context:
space:
mode:
authorBryan Henderson <bryanh@giraffe.netgate.net>1997-01-08 08:33:07 +0000
committerBryan Henderson <bryanh@giraffe.netgate.net>1997-01-08 08:33:07 +0000
commit5e98c40129beed4b504b48e83dae2962b6fcbacb (patch)
tree106b356fcbdd59521efe27f3ae13283a6fd76b3c /src/backend/utils/init/postinit.c
parente5ff0b930a8afebecc143cf350db2da2b10d9fca (diff)
downloadpostgresql-5e98c40129beed4b504b48e83dae2962b6fcbacb.tar.gz
postgresql-5e98c40129beed4b504b48e83dae2962b6fcbacb.zip
Change the way ipc.h is included because sys/ipc.h on Ultrix is broken.
Diffstat (limited to 'src/backend/utils/init/postinit.c')
-rw-r--r--src/backend/utils/init/postinit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/utils/init/postinit.c b/src/backend/utils/init/postinit.c
index de2768d8da6..178d45ff835 100644
--- a/src/backend/utils/init/postinit.c
+++ b/src/backend/utils/init/postinit.c
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/utils/init/postinit.c,v 1.6 1996/11/12 06:46:42 bryanh Exp $
+ * $Header: /cvsroot/pgsql/src/backend/utils/init/postinit.c,v 1.7 1997/01/08 08:33:07 bryanh Exp $
*
* NOTES
* InitPostgres() is the function called from PostgresMain
@@ -32,13 +32,13 @@
#include <sys/file.h>
#include <sys/stat.h>
#include <sys/types.h>
-#include <sys/ipc.h>
#include <math.h>
#include <unistd.h>
#include "postgres.h"
#include "version.h"
+#include <storage/ipc.h>
#include <storage/backendid.h>
#include <storage/buf_internals.h>
#include <storage/smgr.h>