AIX implementation of readlink.
This commit is contained in:
parent
8198cb76b2
commit
f31359c0ed
8
sysdeps/unix/sysv/aix/readlink.c
Normal file
8
sysdeps/unix/sysv/aix/readlink.c
Normal 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);
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user