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