summaryrefslogtreecommitdiff
path: root/ports/linux/guts/__xmknod.c
diff options
context:
space:
mode:
authorAndrew Shadura <andrewsh@debian.org>2015-11-22 21:25:49 +0100
committerAndrew Shadura <andrewsh@debian.org>2015-11-22 21:25:49 +0100
commit6e7205c8f65c8bc03af8619c04b7179218eb1520 (patch)
tree0957dfac7dbf4a5a39adfe2777666037b7bdd0f3 /ports/linux/guts/__xmknod.c
pseudo (1.7.4-1) unstable; urgency=low
* Initial release (Closes: #796973). # imported from the archive
Diffstat (limited to 'ports/linux/guts/__xmknod.c')
-rw-r--r--ports/linux/guts/__xmknod.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/ports/linux/guts/__xmknod.c b/ports/linux/guts/__xmknod.c
new file mode 100644
index 0000000..fa31b66
--- /dev/null
+++ b/ports/linux/guts/__xmknod.c
@@ -0,0 +1,14 @@
+/*
+ * Copyright (c) 2008-2010 Wind River Systems; see
+ * guts/COPYRIGHT for information.
+ *
+ * static int
+ * wrap___xmknod(int ver, const char *path, mode_t mode, dev_t *dev) {
+ * int rc = -1;
+ */
+
+ rc = wrap___xmknodat(ver, AT_FDCWD, path, mode, dev);
+
+/* return rc;
+ * }
+ */