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