diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-07-25 19:45:31 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-07-25 19:45:31 +0000 |
commit | 31cae34d078b5fc2bcb5f9b2e307aeef92079cf4 (patch) | |
tree | 6cbb123a2ec30bfb70fe3a965b884fd079d98de6 /src/backend/storage/ipc/ipc.c | |
parent | fd35587d4cb00ba605a030d51ecdc2ccb4991600 (diff) | |
download | postgresql-31cae34d078b5fc2bcb5f9b2e307aeef92079cf4.tar.gz postgresql-31cae34d078b5fc2bcb5f9b2e307aeef92079cf4.zip |
multiple define of 'union semun' removed
submitted by: dr. george
Diffstat (limited to 'src/backend/storage/ipc/ipc.c')
-rw-r--r-- | src/backend/storage/ipc/ipc.c | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/src/backend/storage/ipc/ipc.c b/src/backend/storage/ipc/ipc.c index 0ccccd78fc5..42bd370adb2 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.2 1996/07/20 08:35:52 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/backend/storage/ipc/ipc.c,v 1.3 1996/07/25 19:45:24 scrappy Exp $ * * NOTES * @@ -47,16 +47,6 @@ int UsePrivateMemory = 1; int UsePrivateMemory = 0; #endif -#if defined(PORTNAME_bsdi)||defined(PORTNAME_i386_solaris) -/* hacka, hacka, hacka (XXX) */ -union semun { - int val; /* value for SETVAL */ - struct semid_ds *buf; /* buffer for IPC_STAT & IPC_SET */ - ushort *array; /* array for GETALL & SETALL */ -}; -#endif - - /* ---------------------------------------------------------------- * exit() handling stuff * ---------------------------------------------------------------- |