From: Ulrich Drepper Date: Tue, 21 Mar 2000 01:19:13 +0000 (+0000) Subject: AIX implementation of readlink. X-Git-Tag: glibc-2.16-ports-before-merge~2586 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f31359c0edf267030ee89841c10d298f8725a73b;p=thirdparty%2Fglibc.git AIX implementation of readlink. --- 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); +}