blob: c8b9f8c255f23f995bdb77e0b8f285dd83f3f18d [file] [log] [blame]
#include "ipc.h"
#include <errno.h>
#include <sys/shm.h>
int shmdt(const void* addr) {
errno = ENOSYS;
return -1;
}