| 79 | // --------------------------------------------------------------------------- |
| 80 | |
| 81 | static int MyUnlink(const std::string &filename) { |
| 82 | #ifdef _MSC_VER |
| 83 | return _unlink(filename.c_str()); |
| 84 | #else |
| 85 | return unlink(filename.c_str()); |
| 86 | #endif |
| 87 | } |
| 88 | |
| 89 | // --------------------------------------------------------------------------- |
| 90 |