diff options
Diffstat (limited to 'src/backend/storage/ipc/ipc.c')
-rw-r--r-- | src/backend/storage/ipc/ipc.c | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/src/backend/storage/ipc/ipc.c b/src/backend/storage/ipc/ipc.c index 9f74d848c4..b02beba9ec 100644 --- a/src/backend/storage/ipc/ipc.c +++ b/src/backend/storage/ipc/ipc.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/storage/ipc/ipc.c,v 1.9 1996/11/10 03:02:21 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/storage/ipc/ipc.c,v 1.10 1997/01/08 08:32:01 bryanh Exp $ * * NOTES * @@ -30,16 +30,12 @@ #include <string.h> #include <errno.h> -/* XXX - the following dependency should be moved into the defaults.mk file */ -#ifndef _IPC_ -#define _IPC_ -#include <sys/ipc.h> -#include <sys/sem.h> -#include <sys/shm.h> -#endif #include "postgres.h" #include "storage/ipc.h" +/* In Ultrix, sem.h and shm.h must be included AFTER ipc.h */ +#include <sys/sem.h> +#include <sys/shm.h> #include "utils/memutils.h" #if defined(sparc_solaris) |