diff options
| author | Bruce Momjian | 1996-11-08 06:02:30 +0000 |
|---|---|---|
| committer | Bruce Momjian | 1996-11-08 06:02:30 +0000 |
| commit | 4b2b8592a04730b800583ee6b5638d04bf0d95bd (patch) | |
| tree | 5c91dead4db4240f387ec65fb1a21194d79522ce /src/backend/storage/ipc/ipci.c | |
| parent | d79bb2fd0ee968602421a1a8d87700204f070d52 (diff) | |
Compile and warning cleanup
Diffstat (limited to 'src/backend/storage/ipc/ipci.c')
| -rw-r--r-- | src/backend/storage/ipc/ipci.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/backend/storage/ipc/ipci.c b/src/backend/storage/ipc/ipci.c index 70c73f14c56..2527daed7f8 100644 --- a/src/backend/storage/ipc/ipci.c +++ b/src/backend/storage/ipc/ipci.c @@ -7,10 +7,14 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/storage/ipc/ipci.c,v 1.3 1996/11/06 06:49:03 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/backend/storage/ipc/ipci.c,v 1.4 1996/11/08 05:58:33 momjian Exp $ * *------------------------------------------------------------------------- */ +#include <string.h> +#include <sys/types.h> +#include <sys/ipc.h> + #include "postgres.h" #include "storage/ipc.h" @@ -22,11 +26,6 @@ #include "storage/lock.h" #include "miscadmin.h" /* for DebugLvl */ -#if defined(sparc_solaris) -#include <string.h> -#include <sys/ipc.h> -#endif - /* * SystemPortAddressCreateMemoryKey -- * Returns a memory key given a port address. |
