NetBSD/lib/libc/gen/shmctl.c

20 lines
416 B
C

#if defined(LIBC_SCCS) && !defined(lint)
static char *rcsid = "$Id: shmctl.c,v 1.3 1993/11/19 03:18:29 mycroft Exp $";
#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;
struct shmid_ds *buf;
#endif
{
return (shmsys(1, shmid, cmd, buf));
}