19 lines
323 B
C
19 lines
323 B
C
#include <sys/cdefs.h>
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
#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));
|
|
}
|