freebsd-dev/lib/libc/gen/shmat.c
1999-08-28 00:22:10 +00:00

20 lines
388 B
C

#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__
void *shmat(int shmid, void *shmaddr, int shmflg)
#else
void *shmat(shmid, shmaddr, shmflg)
int shmid;
void *shmaddr;
int shmflg;
#endif
{
return ((void *)shmsys(0, shmid, shmaddr, shmflg));
}