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