blob: 84704efe752e03dc1dfe9ecee4d28459d52648bc [file] [log] [blame]
#include <errno.h>
#include <sys/shm.h>
#include "ipc.h"
int shmctl(int id, int cmd, void* buf) {
errno = ENOSYS;
return -1;
}