summaryrefslogtreecommitdiff
path: root/sysdeps/unix/sysv/solaris2/kopensolaris-gnu/fxstat64.c
diff options
context:
space:
mode:
authorIgor Pashev <pashev.igor@gmail.com>2014-08-31 14:00:34 +0400
committerIgor Pashev <pashev.igor@gmail.com>2014-08-31 14:00:34 +0400
commitef6099ee4aa93ea44d0a15a14d01790c3007f53e (patch)
treefb9cda8ef9a0f8e1c98e50ec6192877146628499 /sysdeps/unix/sysv/solaris2/kopensolaris-gnu/fxstat64.c
parent6fd16a2182060516be859138c2687de5d33fe0ef (diff)
downloadglibc-ef6099ee4aa93ea44d0a15a14d01790c3007f53e.tar.gz
Don't include bp-check.h and don't use CHECK_1
Related to a2da1673fe32540799c801e8aec374dc1c0e0596 and f3aae3f3eb4e4345413dc238e941cdb52f747d16
Diffstat (limited to 'sysdeps/unix/sysv/solaris2/kopensolaris-gnu/fxstat64.c')
-rw-r--r--sysdeps/unix/sysv/solaris2/kopensolaris-gnu/fxstat64.c3
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)