1
0
Fork 0
forked from len0rd/rockbox

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
This commit is contained in:
Solomon Peachy 2024-07-19 18:39:52 -04:00
parent 6af637645a
commit 87ef6bb9e1
3 changed files with 5 additions and 3 deletions

View file

@ -33,6 +33,8 @@
#include "pathfuncs.h"
#include "string-extra.h"
int os_volume_path(IF_MV(int volume, ) char *buffer, size_t bufsize);
#define SAME_FILE_INFO(sb1p, sb2p) \
((sb1p)->st_dev == (sb2p)->st_dev && (sb1p)->st_ino == (sb2p)->st_ino)