aboutsummaryrefslogtreecommitdiff
path: root/libbb/loop.c
diff options
context:
space:
mode:
Diffstat (limited to 'libbb/loop.c')
-rw-r--r--libbb/loop.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libbb/loop.c b/libbb/loop.c
index 6934b7a3b..7d2b420be 100644
--- a/libbb/loop.c
+++ b/libbb/loop.c
@@ -44,7 +44,7 @@ typedef struct {
44} bb_loop_info; 44} bb_loop_info;
45#endif 45#endif
46 46
47char *query_loop(const char *device) 47char* FAST_FUNC query_loop(const char *device)
48{ 48{
49 int fd; 49 int fd;
50 bb_loop_info loopinfo; 50 bb_loop_info loopinfo;
@@ -61,7 +61,7 @@ char *query_loop(const char *device)
61} 61}
62 62
63 63
64int del_loop(const char *device) 64int FAST_FUNC del_loop(const char *device)
65{ 65{
66 int fd, rc; 66 int fd, rc;
67 67
@@ -79,7 +79,7 @@ int del_loop(const char *device)
79 search will re-use an existing loop device already bound to that 79 search will re-use an existing loop device already bound to that
80 file/offset if it finds one. 80 file/offset if it finds one.
81 */ 81 */
82int set_loop(char **device, const char *file, unsigned long long offset) 82int FAST_FUNC set_loop(char **device, const char *file, unsigned long long offset)
83{ 83{
84 char dev[LOOP_NAMESIZE]; 84 char dev[LOOP_NAMESIZE];
85 char *try; 85 char *try;