* Remove the SINGLEUSE feature for telldir(), it does not conform to the
[dragonfly.git] / lib / libc / gen / shmdt.c
1 /*
2  * $FreeBSD: src/lib/libc/gen/shmdt.c,v 1.4 1999/08/27 23:58:57 peter Exp $
3  * $DragonFly: src/lib/libc/gen/shmdt.c,v 1.3 2005/11/13 00:07:42 swildner Exp $
4  */
5
6 #include <sys/types.h>
7 #include <sys/ipc.h>
8 #include <sys/shm.h>
9
10 int shmdt(void *shmaddr)
11 {
12         return (shmsys(2, shmaddr));
13 }