#if defined(LIBC_SCCS) && !defined(lint) static char *rcsid = "$Id: shmdt.c,v 1.3 1993/11/19 03:18:32 mycroft 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)); }