Commit 589394f0 authored by Nils Goroll's avatar Nils Goroll

fix return type of readlink

parent dd926d74
......@@ -49,7 +49,7 @@ FUNCTION(int, utimensat, int, const char *, const struct timespec *, int)
/* lstat */
#if !defined(__XOPEN_OR_POSIX) || defined(_XPG_2) || defined(__EXTENSIONS__)
FUNCTION(int, symlink, const char *, const char *)
FUNCTION(int, readlink, const char *, char *, size_t)
FUNCTION(size_t, readlink, const char *, char *, size_t)
FUNCTION(int, lchown, const char *, uid_t, gid_t)
#endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment