NetBSD/lib/libc/gen/shmctl.c

20 lines
416 B
C
Raw Normal View History

1993-08-26 19:26:18 +04:00
#if defined(LIBC_SCCS) && !defined(lint)
static char *rcsid = "$Id: shmctl.c,v 1.5 1994/05/29 00:36:01 hpeyerl Exp $";
1993-08-26 19:26:18 +04:00
#endif /* LIBC_SCCS and not lint */
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/shm.h>
#if __STDC__
int shmctl(int shmid, int cmd, struct shmid_ds *buf)
#else
int shmctl(shmid, cmd, buf)
int shmid;
int cmd;
1993-11-19 06:18:24 +03:00
struct shmid_ds *buf;
#endif
{
return (shmsys(1, shmid, cmd, buf));
}