diff options
Diffstat (limited to 'sysdeps/unix/sysv/solaris2/kopensolaris-gnu/fxstat64.c')
-rw-r--r-- | sysdeps/unix/sysv/solaris2/kopensolaris-gnu/fxstat64.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/solaris2/kopensolaris-gnu/fxstat64.c b/sysdeps/unix/sysv/solaris2/kopensolaris-gnu/fxstat64.c index ebf02d8a50..04417633dd 100644 --- a/sysdeps/unix/sysv/solaris2/kopensolaris-gnu/fxstat64.c +++ b/sysdeps/unix/sysv/solaris2/kopensolaris-gnu/fxstat64.c @@ -20,7 +20,6 @@ #include <inline-syscall.h> #include <sys/stat.h> #include <errno.h> -#include <bp-checks.h> DECLARE_INLINE_SYSCALL (int, fstat64, int filedes, struct stat64 *buf); @@ -33,7 +32,7 @@ __fxstat64 (int vers, int fd, struct stat64 *buf) return -1; } - return INLINE_SYSCALL (fstat64, 2, fd, CHECK_1 (buf)); + return INLINE_SYSCALL (fstat64, 2, fd, buf); } hidden_def (__fxstat64) |