mirror of
https://github.com/owntone/owntone-server.git
synced 2025-11-25 20:16:14 -05:00
Stat wrapper for os-unix, bring in sync with windows
This commit is contained in:
@@ -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);
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user