xstat.c 254 B

1234567891011
  1. /*
  2. * xstat.c - a stat() which dies on failure with meaningful error message
  3. */
  4. #include <unistd.h>
  5. #include "libbb.h"
  6. void xstat(const char *name, struct stat *stat_buf)
  7. {
  8. if (stat(name, stat_buf))
  9. bb_perror_msg_and_die("Can't stat '%s'", name);
  10. }