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 ff7c27399..0fd467c30 100644 --- a/coreutils/libcoreutils/cp_mv_stat.c +++ b/coreutils/libcoreutils/cp_mv_stat.c | |||
@@ -23,7 +23,7 @@ | |||
23 | #include "libbb.h" | 23 | #include "libbb.h" |
24 | #include "coreutils.h" | 24 | #include "coreutils.h" |
25 | 25 | ||
26 | int cp_mv_stat2(const char *fn, struct stat *fn_stat, stat_func sf) | 26 | int FAST_FUNC cp_mv_stat2(const char *fn, struct stat *fn_stat, stat_func sf) |
27 | { | 27 | { |
28 | if (sf(fn, fn_stat) < 0) { | 28 | if (sf(fn, fn_stat) < 0) { |
29 | if (errno != ENOENT) { | 29 | if (errno != ENOENT) { |
@@ -44,7 +44,7 @@ int cp_mv_stat2(const char *fn, struct stat *fn_stat, stat_func sf) | |||
44 | return 1; | 44 | return 1; |
45 | } | 45 | } |
46 | 46 | ||
47 | int cp_mv_stat(const char *fn, struct stat *fn_stat) | 47 | int FAST_FUNC cp_mv_stat(const char *fn, struct stat *fn_stat) |
48 | { | 48 | { |
49 | return cp_mv_stat2(fn, fn_stat, stat); | 49 | return cp_mv_stat2(fn, fn_stat, stat); |
50 | } | 50 | } |