blob: 2a6cc3ed799876f30b721033742bdd2867e0ab5a [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
Rob Landleyc5b1d4d2006-03-13 15:45:16 +00002/*
3 * xstat.c - a stat() which dies on failure with meaningful error message
4 */
5#include <unistd.h>
6#include "libbb.h"
7
8void xstat(const char *name, struct stat *stat_buf)
9{
10 if (stat(name, stat_buf))
11 bb_perror_msg_and_die("Can't stat '%s'", name);
12}