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