blob: 512ae398732fe9d53774a90d1da6e78b7d3b11b6 [file] [log] [blame]
#include <unistd.h>
#include <fcntl.h>
#include "syscall.h"
ssize_t readlink(const char* restrict path,
char* restrict buf,
size_t bufsize) {
#ifdef SYS_readlink
return syscall(SYS_readlink, path, buf, bufsize);
#else
return syscall(SYS_readlinkat, AT_FDCWD, path, buf, bufsize);
#endif
}