OSDN Git Service

- merge xstat.c into xfuncs.c
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Mon, 11 Sep 2006 09:18:09 +0000 (09:18 -0000)
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Mon, 11 Sep 2006 09:18:09 +0000 (09:18 -0000)
include/libbb.h
libbb/Makefile.in
libbb/xfuncs.c
libbb/xstat.c [deleted file]

index 7fbeb4f..6e136ab 100644 (file)
@@ -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);
index 7e84a6d..3db891d 100644 (file)
@@ -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 \
index 4bb05f2..e88a538 100644 (file)
@@ -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 (file)
index 2a6cc3e..0000000
+++ /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 <unistd.h>
-#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);
-}