From f0ed376eda5d5c25d270e5100a881fb2d801bee6 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Thu, 26 Oct 2006 23:21:47 +0000 Subject: remove bb_printf and the like --- include/libbb.h | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) (limited to 'include/libbb.h') diff --git a/include/libbb.h b/include/libbb.h index a2267f942..f435a5915 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -227,7 +227,7 @@ extern int recursive_action(const char *fileName, int recurse, int (*dirAction) (const char *fileName, struct stat* statbuf, void* userData), void* userData); -extern int bb_parse_mode( const char* s, mode_t* theMode); +extern int bb_parse_mode(const char* s, mode_t* theMode); extern unsigned int tty_baud_to_value(speed_t speed); extern speed_t tty_value_to_baud(unsigned int value); @@ -253,7 +253,7 @@ extern FILE *bb_wfopen_input(const char *filename); 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 fflush_stdout_and_exit(int retval) ATTRIBUTE_NORETURN; extern void xstat(char *filename, struct stat *buf); extern int xsocket(int domain, int type, int protocol); @@ -278,17 +278,8 @@ extern const struct option *applet_long_options; extern uint32_t option_mask32; extern uint32_t getopt32(int argc, char **argv, const char *applet_opts, ...); -extern int bb_vfprintf(FILE * __restrict stream, const char * __restrict format, - va_list arg) __attribute__ ((format (printf, 2, 0))); -extern int bb_vprintf(const char * __restrict format, va_list arg) - __attribute__ ((format (printf, 1, 0))); -extern int bb_fprintf(FILE * __restrict stream, const char * __restrict format, ...) - __attribute__ ((format (printf, 2, 3))); -extern int bb_printf(const char * __restrict format, ...) - __attribute__ ((format (printf, 1, 2))); - -extern void xferror(FILE *fp, const char *fn); -extern void xferror_stdout(void); +extern void die_if_ferror(FILE *fp, const char *fn); +extern void die_if_ferror_stdout(void); extern void xfflush_stdout(void); extern void bb_warn_ignoring_args(int n); -- cgit v1.2.3