aboutsummaryrefslogtreecommitdiffstats
path: root/ports/unix/guts/mkfifoat.c
diff options
context:
space:
mode:
Diffstat (limited to 'ports/unix/guts/mkfifoat.c')
-rw-r--r--ports/unix/guts/mkfifoat.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/ports/unix/guts/mkfifoat.c b/ports/unix/guts/mkfifoat.c
new file mode 100644
index 0000000..3497f37
--- /dev/null
+++ b/ports/unix/guts/mkfifoat.c
@@ -0,0 +1,14 @@
+/*
+ * Copyright (c) 2008-2010 Wind River Systems; see
+ * guts/COPYRIGHT for information.
+ *
+ * static int
+ * wrap_mkfifoat(int dirfd, const char *path, mode_t mode) {
+ * int rc = -1;
+ */
+
+ rc = wrap_mknodat(dirfd, path, (mode & 07777) | S_IFIFO, (dev_t) 0);
+
+/* return rc;
+ * }
+ */