diff options
author | Rob Landley <rob@landley.net> | 2006-03-06 20:47:33 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-03-06 20:47:33 +0000 |
commit | dfba741457cc81eb2ed3a9d4c074fbad74aa3249 (patch) | |
tree | 588d140a71e857cb32c80d1faad6f3073b119aa7 /libbb/print_file.c | |
parent | 1f5e25bf3eca768b8cee1c689ac154d8f51662f9 (diff) | |
download | busybox-w32-dfba741457cc81eb2ed3a9d4c074fbad74aa3249.tar.gz busybox-w32-dfba741457cc81eb2ed3a9d4c074fbad74aa3249.tar.bz2 busybox-w32-dfba741457cc81eb2ed3a9d4c074fbad74aa3249.zip |
Robert P. Day removed 8 gazillion occurrences of "extern" on function
definitions. (That should only be on prototypes.)
Diffstat (limited to 'libbb/print_file.c')
-rw-r--r-- | libbb/print_file.c | 4 |
1 files changed, 2 insertions, 2 deletions
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 @@ | |||
24 | #include <unistd.h> | 24 | #include <unistd.h> |
25 | #include "libbb.h" | 25 | #include "libbb.h" |
26 | 26 | ||
27 | extern void bb_xprint_and_close_file(FILE *file) | 27 | void bb_xprint_and_close_file(FILE *file) |
28 | { | 28 | { |
29 | bb_xfflush_stdout(); | 29 | bb_xfflush_stdout(); |
30 | /* Note: Do not use STDOUT_FILENO here, as this is a lib routine | 30 | /* 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) | |||
45 | * exits with default error code if an error occurs | 45 | * exits with default error code if an error occurs |
46 | */ | 46 | */ |
47 | 47 | ||
48 | extern int bb_xprint_file_by_name(const char *filename) | 48 | int bb_xprint_file_by_name(const char *filename) |
49 | { | 49 | { |
50 | FILE *f; | 50 | FILE *f; |
51 | 51 | ||