| 1517 | } |
| 1518 | |
| 1519 | int SystemTools::Stat(char const* path, SystemTools::Stat_t* buf) |
| 1520 | { |
| 1521 | if (!path) { |
| 1522 | errno = EFAULT; |
| 1523 | return -1; |
| 1524 | } |
| 1525 | return SystemTools::Stat(std::string(path), buf); |
| 1526 | } |
| 1527 | |
| 1528 | int SystemTools::Stat(std::string const& path, SystemTools::Stat_t* buf) |
| 1529 | { |