NetBSD/lib/libc/gen/shmdt.c

18 lines
341 B
C
Raw Normal View History

1993-08-26 19:26:18 +04:00
#if defined(LIBC_SCCS) && !defined(lint)
1993-11-19 06:18:24 +03:00
static char *rcsid = "$Id: shmdt.c,v 1.3 1993/11/19 03:18:32 mycroft Exp $";
1993-08-26 19:26:18 +04:00
#endif /* LIBC_SCCS and not lint */
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/shm.h>
#if __STDC__
1993-11-19 06:18:24 +03:00
int shmdt(void *shmaddr)
#else
int shmdt(shmaddr)
1993-11-19 06:18:24 +03:00
void *shmaddr;
#endif
{
return (shmsys(2, shmaddr));
}