18 lines
341 B
C
18 lines
341 B
C
|
#if defined(LIBC_SCCS) && !defined(lint)
|
||
|
static char *rcsid = "$Id: shmdt.c,v 1.2 1993/10/10 12:01:29 rgrimes Exp $";
|
||
|
#endif /* LIBC_SCCS and not lint */
|
||
|
|
||
|
#include <sys/types.h>
|
||
|
#include <sys/ipc.h>
|
||
|
#include <sys/shm.h>
|
||
|
|
||
|
#if __STDC__
|
||
|
int shmdt(void *shmaddr)
|
||
|
#else
|
||
|
int shmdt(shmaddr)
|
||
|
void *shmaddr;
|
||
|
#endif
|
||
|
{
|
||
|
return (shmsys(2, shmaddr));
|
||
|
}
|