summaryrefslogtreecommitdiff
path: root/src/sys/shm/shmat.c
blob: 0cee489831afa5abe9152122adbffb4cdbc0fcd2 (plain)
1
2
3
4
5
6
7
8
9
10
#include <sys/shm.h>

void * shmat(int shmid, const void *shmaddr, int shmflg)
{
	return (void*)shmaddr;
}

/*
XOPEN(4)
*/