diff options
Diffstat (limited to 'coreutils/libcoreutils/cp_mv_stat.c')
-rw-r--r-- | coreutils/libcoreutils/cp_mv_stat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/libcoreutils/cp_mv_stat.c b/coreutils/libcoreutils/cp_mv_stat.c index 5a70b0221..d401bcc75 100644 --- a/coreutils/libcoreutils/cp_mv_stat.c +++ b/coreutils/libcoreutils/cp_mv_stat.c | |||
@@ -25,7 +25,7 @@ | |||
25 | #include "libbb.h" | 25 | #include "libbb.h" |
26 | #include "coreutils.h" | 26 | #include "coreutils.h" |
27 | 27 | ||
28 | extern int cp_mv_stat2(const char *fn, struct stat *fn_stat, stat_func sf) | 28 | int cp_mv_stat2(const char *fn, struct stat *fn_stat, stat_func sf) |
29 | { | 29 | { |
30 | if (sf(fn, fn_stat) < 0) { | 30 | if (sf(fn, fn_stat) < 0) { |
31 | if (errno != ENOENT) { | 31 | if (errno != ENOENT) { |
@@ -39,7 +39,7 @@ extern int cp_mv_stat2(const char *fn, struct stat *fn_stat, stat_func sf) | |||
39 | return 1; | 39 | return 1; |
40 | } | 40 | } |
41 | 41 | ||
42 | extern int cp_mv_stat(const char *fn, struct stat *fn_stat) | 42 | int cp_mv_stat(const char *fn, struct stat *fn_stat) |
43 | { | 43 | { |
44 | return cp_mv_stat2(fn, fn_stat, stat); | 44 | return cp_mv_stat2(fn, fn_stat, stat); |
45 | } | 45 | } |