summaryrefslogtreecommitdiff
path: root/src/sys/ipc/ftok.c
blob: 41761231d79e50df921923bb8d976b0e1fbd7569 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <sys/ipc.h>

key_t ftok(const char *path, int id)
{
	key_t key;
	return key;
}

/*
XOPEN(400)
*/