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