From dfba741457cc81eb2ed3a9d4c074fbad74aa3249 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Mon, 6 Mar 2006 20:47:33 +0000 Subject: Robert P. Day removed 8 gazillion occurrences of "extern" on function definitions. (That should only be on prototypes.) --- libbb/print_file.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libbb/print_file.c') diff --git a/libbb/print_file.c b/libbb/print_file.c index 963db1416..26bd0d458 100644 --- a/libbb/print_file.c +++ b/libbb/print_file.c @@ -24,7 +24,7 @@ #include #include "libbb.h" -extern void bb_xprint_and_close_file(FILE *file) +void bb_xprint_and_close_file(FILE *file) { bb_xfflush_stdout(); /* Note: Do not use STDOUT_FILENO here, as this is a lib routine @@ -45,7 +45,7 @@ extern void bb_xprint_and_close_file(FILE *file) * exits with default error code if an error occurs */ -extern int bb_xprint_file_by_name(const char *filename) +int bb_xprint_file_by_name(const char *filename) { FILE *f; -- cgit v1.2.3-55-g6feb