aboutsummaryrefslogtreecommitdiffstats
path: root/guts/readlink.c
diff options
context:
space:
mode:
Diffstat (limited to 'guts/readlink.c')
-rw-r--r--guts/readlink.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/guts/readlink.c b/guts/readlink.c
new file mode 100644
index 0000000..98931c6
--- /dev/null
+++ b/guts/readlink.c
@@ -0,0 +1,11 @@
+/*
+ * 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;
+ * }
+ */