diff options
author | landley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-03-13 15:45:16 +0000 |
---|---|---|
committer | landley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-03-13 15:45:16 +0000 |
commit | 12f32660d14e442e42ed667c106fec3a9db79856 (patch) | |
tree | e44405a7e5212758d20a9595cbb0a82609d4a347 /libbb/xstat.c | |
parent | e02e2f9792dc829c10ca3f18a1fab0294404ffea (diff) | |
download | busybox-w32-12f32660d14e442e42ed667c106fec3a9db79856.tar.gz busybox-w32-12f32660d14e442e42ed667c106fec3a9db79856.tar.bz2 busybox-w32-12f32660d14e442e42ed667c106fec3a9db79856.zip |
Patch from Denis Vlasenko to add xstat() and use it.
git-svn-id: svn://busybox.net/trunk/busybox@14530 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'libbb/xstat.c')
-rw-r--r-- | libbb/xstat.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/libbb/xstat.c b/libbb/xstat.c new file mode 100644 index 000000000..ca6686403 --- /dev/null +++ b/libbb/xstat.c | |||
@@ -0,0 +1,11 @@ | |||
1 | /* | ||
2 | * xstat.c - a stat() which dies on failure with meaningful error message | ||
3 | */ | ||
4 | #include <unistd.h> | ||
5 | #include "libbb.h" | ||
6 | |||
7 | void xstat(const char *name, struct stat *stat_buf) | ||
8 | { | ||
9 | if (stat(name, stat_buf)) | ||
10 | bb_perror_msg_and_die("Can't stat '%s'", name); | ||
11 | } | ||