#if defined(LIBC_SCCS) && !defined(lint) static char *rcsid = "$Id: shmdt.c,v 1.5 1994/05/29 00:36:06 hpeyerl Exp $"; #endif /* LIBC_SCCS and not lint */ #include #include #include #if __STDC__ int shmdt(void *shmaddr) #else int shmdt(shmaddr) void *shmaddr; #endif { return (shmsys(2, shmaddr)); }