Change prototype for semctl().

This commit is contained in:
Jordan K. Hubbard 1996-12-18 13:18:57 +00:00
parent e69742d795
commit 9d5e110e4d
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $Id: sem.h,v 1.7 1995/12/27 15:25:30 joerg Exp $ */
/* $Id: sem.h,v 1.8 1996/06/12 05:11:08 gpalmer 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