Instantiate our own variables instead of depending on bogus common

declarations in system headers that will be fixed soon.
This commit is contained in:
Bruce Evans 1995-07-12 19:10:17 +00:00
parent fce8868368
commit 30df0b88e1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=9499

View File

@ -24,7 +24,7 @@
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $Id: ipcs.c,v 1.2 1994/09/13 16:59:29 dfr Exp $
* $Id: ipcs.c,v 1.3 1994/09/19 10:24:38 davidg Exp $
*/
#include <stdio.h>
@ -46,9 +46,12 @@
#include <sys/shm.h>
#include <sys/msg.h>
struct shminfo shminfo;
struct semid_ds *sema;
struct seminfo seminfo;
struct msginfo msginfo;
struct msqid_ds *msqids;
struct shminfo shminfo;
struct shmid_ds *shmsegs;
int semconfig __P((int,...));
void usage __P((void));