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) */