Gitiles
Code Review
Sign In
gerrit.nordix.org
/
codeaurora
/
busybox
/
0ea0aefcb5cf4e0a589bda0b0b78a1c39f5f9c10
/
.
/
libbb
/
xstat.c
blob: ca668640306a60ef9e2aaafbbd2f4f98acbfd284 [
file
] [
log
] [
blame
]
/*
* xstat.c - a stat() which dies on failure with meaningful error message
*/
#include
<unistd.h>
#include
"libbb.h"
void
xstat
(
const
char
*
name
,
struct
stat
*
stat_buf
)
{
if
(
stat
(
name
,
stat_buf
))
bb_perror_msg_and_die
(
"Can't stat '%s'"
,
name
);
}