repo.or.cz
/
glibc-ports.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
.
[glibc-ports.git]
/
sysdeps
/
unix
/
sysv
/
aix
/
readlink.c
blob
2770358b98031a465ba14327eb50023ae6c6b360
1
/* This is a system call. We only have to provide the wrapper. */
2
#include <unistd.h>
3
4
int
5
__readlink
(
const char
*
path
,
char
*
buf
,
size_t
len
)
6
{
7
return
readlink
(
path
,
buf
,
len
);
8
}