1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-17 10:26:15 +00:00
freebsd/lib/libc/gen/shmdt.c
1997-02-22 15:12:41 +00:00

18 lines
293 B
C

#if defined(LIBC_SCCS) && !defined(lint)
static char *rcsid = "$Id$";
#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));
}