about summary refs log tree commit diff
path: root/support/support-xfstat.c
diff options
context:
space:
mode:
authorFlorian Weimer <fweimer@redhat.com>2017-12-22 15:22:17 +0100
committerFlorian Weimer <fweimer@redhat.com>2017-12-22 15:22:17 +0100
commit5da0de4de5e8b9576475432b94fa0a486fd9389f (patch)
tree52c3c299176a5bdd070db14fda2186b60912d697 /support/support-xfstat.c
parent633e2f7f3d88df6427aa3a7a984d3a6b796d9611 (diff)
downloadglibc-5da0de4de5e8b9576475432b94fa0a486fd9389f.tar.gz
glibc-5da0de4de5e8b9576475432b94fa0a486fd9389f.tar.xz
glibc-5da0de4de5e8b9576475432b94fa0a486fd9389f.zip
Synchronize support/ infrastructure with master
This commit updates the support/ subdirectory to
commit bad7a0c81f501fbbcc79af9eaa4b8254441c4a1f
on the master branch.
Diffstat (limited to 'support/support-xfstat.c')
-rw-r--r--support/support-xfstat.c28
1 files changed, 28 insertions, 0 deletions
diff --git a/support/support-xfstat.c b/support/support-xfstat.c
new file mode 100644
index 0000000000..4c8ee9142b
--- /dev/null
+++ b/support/support-xfstat.c
@@ -0,0 +1,28 @@
+/* fstat64 with error checking.
+   Copyright (C) 2017 Free Software Foundation, Inc.
+   This file is part of the GNU C Library.
+
+   The GNU C Library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+
+   The GNU C Library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, see
+   <http://www.gnu.org/licenses/>.  */
+
+#include <support/check.h>
+#include <support/xunistd.h>
+#include <sys/stat.h>
+
+void
+xfstat (int fd, struct stat64 *result)
+{
+  if (fstat64 (fd, result) != 0)
+    FAIL_EXIT1 ("fstat64 (%d): %m", fd);
+}