Stat wrapper for os-unix, bring in sync with windows

This commit is contained in:
Ron Pedde 2006-07-17 22:35:21 +00:00
parent 5b18d69d28
commit 916ad55eb5

View File

@ -493,3 +493,10 @@ char *os_apppath(char *parm) {
return strdup(path);
}
#endif
/**
* stat wrapper
*/
int os_stat(const char *path, struct stat *sb) {
return stat(path, sb);
}