From fdf7fd0195341685bc38299ddd602398bb2da3b1 Mon Sep 17 00:00:00 2001 From: "Jordan K. Hubbard" Date: Wed, 18 Dec 1996 13:37:00 +0000 Subject: [PATCH] Back out previous commit (and that's the last one I do on swallace's behalf - from now on he can do his own). I guess I didn't notice the code in the wrapper which turned the union semun arg into a pointer. --- sys/sys/sem.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/sys/sem.h b/sys/sys/sem.h index 27e5ce87743..5b2189e0d81 100644 --- a/sys/sys/sem.h +++ b/sys/sys/sem.h @@ -1,4 +1,4 @@ -/* $Id: sem.h,v 1.8 1996/06/12 05:11:08 gpalmer Exp $ */ +/* $Id: sem.h,v 1.9 1996/12/18 13:18:57 jkh Exp $ */ /* $NetBSD: sem.h,v 1.5 1994/06/29 06:45:15 cgd Exp $ */ /* @@ -172,7 +172,7 @@ typedef enum { __BEGIN_DECLS int semsys __P((int, ...)); -int semctl __P((int, int, int, union semun *)); +int semctl __P((int, int, int, union semun)); int semget __P((key_t, int, int)); int semop __P((int, struct sembuf *,unsigned)); __END_DECLS