1#include "ipc.h"
2#include <errno.h>
3#include <sys/shm.h>
4
5int shmdt(const void* addr) {
6    errno = ENOSYS;
7    return -1;
8}
9