summaryrefslogtreecommitdiff
path: root/src/sys/shm/shmctl.c
blob: 181f0c4c3d2bbc4eed266de314d365675089a5c2 (plain)
1
2
3
4
5
6
7
8
9
10
#include <sys/shm.h>

int shmctl(int shmid, int cmd, struct shmid_ds *buf)
{
	return 0;
}

/*
XOPEN(4)
*/