AIX implementation of readlink.

This commit is contained in:
Ulrich Drepper 2000-03-21 01:19:13 +00:00
parent 8198cb76b2
commit f31359c0ed

View File

@ -0,0 +1,8 @@
/* This is a system call. We only have to provide the wrapper. */
#include <unistd.h>
int
__readlink (const char *path, char *buf, size_t len)
{
return readlink (path, buf, len);
}