From f31359c0edf267030ee89841c10d298f8725a73b Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Tue, 21 Mar 2000 01:19:13 +0000 Subject: [PATCH] AIX implementation of readlink. --- sysdeps/unix/sysv/aix/readlink.c | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 sysdeps/unix/sysv/aix/readlink.c diff --git a/sysdeps/unix/sysv/aix/readlink.c b/sysdeps/unix/sysv/aix/readlink.c new file mode 100644 index 00000000000..2770358b980 --- /dev/null +++ b/sysdeps/unix/sysv/aix/readlink.c @@ -0,0 +1,8 @@ +/* This is a system call. We only have to provide the wrapper. */ +#include + +int +__readlink (const char *path, char *buf, size_t len) +{ + return readlink (path, buf, len); +} -- 2.47.3