From 57b56674a3933dff9dd3df47dbd9009c409181de Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Mon, 11 Sep 2006 09:18:09 +0000 Subject: [PATCH] - merge xstat.c into xfuncs.c --- include/libbb.h | 2 +- libbb/Makefile.in | 2 +- libbb/xfuncs.c | 10 ++++++++++ libbb/xstat.c | 12 ------------ 4 files changed, 12 insertions(+), 14 deletions(-) delete mode 100644 libbb/xstat.c diff --git a/include/libbb.h b/include/libbb.h index 7fbeb4fb7..6e136ab7b 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -189,7 +189,7 @@ extern FILE *xfopen(const char *path, const char *mode); extern int bb_fclose_nonstdin(FILE *f); extern void bb_fflush_stdout_and_exit(int retval) ATTRIBUTE_NORETURN; -extern void xstat(const char *filename, struct stat *buf); +extern void xstat(const char * const filename, struct stat *buf); extern int xsocket(int domain, int type, int protocol); extern pid_t spawn(char **argv); extern pid_t xspawn(char **argv); diff --git a/libbb/Makefile.in b/libbb/Makefile.in index 7e84a6d62..3db891d59 100644 --- a/libbb/Makefile.in +++ b/libbb/Makefile.in @@ -29,7 +29,7 @@ LIBBB-y:= \ safe_strncpy.c setup_environment.c sha1.c simplify_path.c \ trim.c u_signal_names.c vdprintf.c verror_msg.c \ info_msg.c vinfo_msg.c \ - vherror_msg.c vperror_msg.c wfopen.c xconnect.c xgetcwd.c xstat.c \ + vherror_msg.c vperror_msg.c wfopen.c xconnect.c xgetcwd.c \ xgethostbyname.c xgethostbyname2.c xreadlink.c xgetlarg.c \ get_terminal_width_height.c fclose_nonstdin.c fflush_stdout_and_exit.c \ getopt_ulflags.c default_error_retval.c wfopen_input.c speed_table.c \ diff --git a/libbb/xfuncs.c b/libbb/xfuncs.c index 4bb05f248..e88a5380f 100644 --- a/libbb/xfuncs.c +++ b/libbb/xfuncs.c @@ -487,3 +487,13 @@ void xlisten(int s, int backlog) if (listen(s, backlog)) bb_perror_msg_and_die("listen"); } #endif + +#ifdef L_xstat +/* xstat() - a stat() which dies on failure with meaningful error message */ +void xstat(const char * const name, struct stat *stat_buf) +{ + if (stat(name, stat_buf)) + bb_perror_msg_and_die("Can't stat '%s'", name); +} +#endif + diff --git a/libbb/xstat.c b/libbb/xstat.c deleted file mode 100644 index 2a6cc3ed7..000000000 --- a/libbb/xstat.c +++ /dev/null @@ -1,12 +0,0 @@ -/* vi: set sw=4 ts=4: */ -/* - * xstat.c - a stat() which dies on failure with meaningful error message - */ -#include -#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); -}