blob: 5fc2f1ace4b323a3a96221c9454fc7bfb30b388b [file] [log] [blame]
#include <errno.h>
#include <stdint.h>
#include <sys/shm.h>
#include "ipc.h"
void* shmat(int id, const void* addr, int flag) {
errno = ENOSYS;
return (void*)(intptr_t)-1;
}