#if defined(LIBC_SCCS) && !defined(lint) static char *rcsid = "$Id: shmctl.c,v 1.2 1993/10/10 12:01:28 rgrimes Exp $"; #endif /* LIBC_SCCS and not lint */ #include #include #include #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(4, shmid, cmd, buf)); }