diff options
Diffstat (limited to 'sysdeps/unix/sysv/solaris2/kopensolaris-gnu/fxstatat.c')
-rw-r--r-- | sysdeps/unix/sysv/solaris2/kopensolaris-gnu/fxstatat.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/solaris2/kopensolaris-gnu/fxstatat.c b/sysdeps/unix/sysv/solaris2/kopensolaris-gnu/fxstatat.c index 5d89db1515..3fe111ac13 100644 --- a/sysdeps/unix/sysv/solaris2/kopensolaris-gnu/fxstatat.c +++ b/sysdeps/unix/sysv/solaris2/kopensolaris-gnu/fxstatat.c @@ -21,7 +21,6 @@ #include <fcntl.h> #include <stddef.h> #include <sys/stat.h> -#include <bp-checks.h> DECLARE_INLINE_SYSCALL (int, fstatat, int fd, const char *name, struct stat *sb, int flags); @@ -35,6 +34,6 @@ __fxstatat (int vers, int fd, const char *filename, struct stat *buf, int flag) return -1; } - return INLINE_SYSCALL (fstatat, 2, fd, filename, CHECK_1 (buf), flag); + return INLINE_SYSCALL (fstatat, 2, fd, filename, buf, flag); } libc_hidden_def (__fxstatat) |