blob: ca668640306a60ef9e2aaafbbd2f4f98acbfd284 [file] [log] [blame]
Rob Landleyc5b1d4d2006-03-13 15:45:16 +00001/*
2 * xstat.c - a stat() which dies on failure with meaningful error message
3 */
4#include <unistd.h>
5#include "libbb.h"
6
7void 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}