summaryrefslogtreecommitdiffstats
path: root/lib/libc/gen/shmdt.c
blob: f39ad183f2abc7633a09e9d40014c35e54c5e09f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#if defined(LIBC_SCCS) && !defined(lint)
static char *rcsid = "$FreeBSD$";
#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));
}
OpenPOWER on IntegriCloud