aboutsummaryrefslogtreecommitdiffstats
path: root/guts/mkfifo.c
diff options
context:
space:
mode:
Diffstat (limited to 'guts/mkfifo.c')
-rw-r--r--guts/mkfifo.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/guts/mkfifo.c b/guts/mkfifo.c
new file mode 100644
index 0000000..1a8b54e
--- /dev/null
+++ b/guts/mkfifo.c
@@ -0,0 +1,11 @@
+/*
+ * static int
+ * wrap_mkfifo(const char *path, mode_t mode) {
+ * int rc = -1;
+ */
+
+ rc = wrap_mkfifoat(AT_FDCWD, path, mode);
+
+/* return rc;
+ * }
+ */