summaryrefslogtreecommitdiff
path: root/debug/readlink_chk.c
diff options
context:
space:
mode:
Diffstat (limited to 'debug/readlink_chk.c')
-rw-r--r--debug/readlink_chk.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/debug/readlink_chk.c b/debug/readlink_chk.c
index c44d1d8c37..e3204004d2 100644
--- a/debug/readlink_chk.c
+++ b/debug/readlink_chk.c
@@ -29,9 +29,5 @@ __readlink_chk (const char *path, void *buf, size_t len, size_t buflen)
if (len > buflen)
__chk_fail ();
-#ifdef HAVE_INLINED_SYSCALLS
- return INLINE_SYSCALL (readlink, 3, path, buf, len);
-#else
return __readlink (path, buf, len);
-#endif
}