mirror of
https://github.com/owntone/owntone-server.git
synced 2025-04-14 00:10:10 -04:00
Stat wrapper for os-unix, bring in sync with windows
This commit is contained in:
parent
5b18d69d28
commit
916ad55eb5
@ -493,3 +493,10 @@ char *os_apppath(char *parm) {
|
|||||||
return strdup(path);
|
return strdup(path);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* stat wrapper
|
||||||
|
*/
|
||||||
|
int os_stat(const char *path, struct stat *sb) {
|
||||||
|
return stat(path, sb);
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user