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