diff options
Diffstat (limited to 'debug')
-rw-r--r-- | debug/readlink_chk.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/debug/readlink_chk.c b/debug/readlink_chk.c index c44d1d8..e320400 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 } |