summaryrefslogtreecommitdiff
path: root/firmware/target/hosted/filesystem-unix.c
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2024-07-19 18:39:52 -0400
committerSolomon Peachy <pizza@shaftnet.org>2024-07-19 18:42:11 -0400
commit87ef6bb9e1c32e6a79a04bdc787ace568848520e (patch)
tree78f39c2f096dc46a58ac45892b5753259d8cc5b9 /firmware/target/hosted/filesystem-unix.c
parent6af637645aa30088500ee8dcac3f4d5f596dabce (diff)
downloadrockbox-87ef6bb9e1c32e6a79a04bdc787ace568848520e.tar.gz
rockbox-87ef6bb9e1c32e6a79a04bdc787ace568848520e.zip
hosted: Don't unconditionally pull in mv.h on hosted environments
It causes some conflicts in plugins with the upcoming 64-bit storage enablement Change-Id: Ia8615c5266c2b29216a05a8d85c3da5186c98d1c
Diffstat (limited to 'firmware/target/hosted/filesystem-unix.c')
-rw-r--r--firmware/target/hosted/filesystem-unix.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/firmware/target/hosted/filesystem-unix.c b/firmware/target/hosted/filesystem-unix.c
index f0d7de640d..3a14480e11 100644
--- a/firmware/target/hosted/filesystem-unix.c
+++ b/firmware/target/hosted/filesystem-unix.c
@@ -33,6 +33,8 @@
33#include "pathfuncs.h" 33#include "pathfuncs.h"
34#include "string-extra.h" 34#include "string-extra.h"
35 35
36int os_volume_path(IF_MV(int volume, ) char *buffer, size_t bufsize);
37
36#define SAME_FILE_INFO(sb1p, sb2p) \ 38#define SAME_FILE_INFO(sb1p, sb2p) \
37 ((sb1p)->st_dev == (sb2p)->st_dev && (sb1p)->st_ino == (sb2p)->st_ino) 39 ((sb1p)->st_dev == (sb2p)->st_dev && (sb1p)->st_ino == (sb2p)->st_ino)
38 40