Browse Source

fs_find_mount_point.cpp

inodecalc
Antonio SJ Musumeci 6 months ago
parent
commit
12f34b3fbd
  1. 3
      src/fs_find_mount_point.cpp

3
src/fs_find_mount_point.cpp

@ -5,7 +5,10 @@
int int
fs::find_mount_point(const ghc::filesystem::path &path_) fs::find_mount_point(const ghc::filesystem::path &path_)
{ {
int rv;
struct stat initial_st;
rv = fs::lstat(path_,&initial_st);
return 0; return 0;
} }
Loading…
Cancel
Save