summaryrefslogtreecommitdiff
path: root/src/sys/ipc/ftok.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/sys/ipc/ftok.c')
-rw-r--r--src/sys/ipc/ftok.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/sys/ipc/ftok.c b/src/sys/ipc/ftok.c
new file mode 100644
index 00000000..41761231
--- /dev/null
+++ b/src/sys/ipc/ftok.c
@@ -0,0 +1,11 @@
+#include <sys/ipc.h>
+
+key_t ftok(const char *path, int id)
+{
+ key_t key;
+ return key;
+}
+
+/*
+XOPEN(400)
+*/