aboutsummaryrefslogtreecommitdiffstats
path: root/ports/unix/guts/unlink.c
diff options
context:
space:
mode:
Diffstat (limited to 'ports/unix/guts/unlink.c')
-rw-r--r--ports/unix/guts/unlink.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/ports/unix/guts/unlink.c b/ports/unix/guts/unlink.c
new file mode 100644
index 0000000..d8a5d01
--- /dev/null
+++ b/ports/unix/guts/unlink.c
@@ -0,0 +1,14 @@
+/*
+ * Copyright (c) 2008-2010 Wind River Systems; see
+ * guts/COPYRIGHT for information.
+ *
+ * static int
+ * wrap_unlink(const char *path) {
+ * int rc = -1;
+ */
+
+ rc = wrap_unlinkat(AT_FDCWD, path, 0);
+
+/* return rc;
+ * }
+ */