* Version of the standard free that accepts const pointers. * @param ptr The data to free. */
| 26 | * @param ptr The data to free. |
| 27 | */ |
| 28 | static inline void free(const void *ptr) |
| 29 | { |
| 30 | free(const_cast<void *>(ptr)); |
| 31 | } |
| 32 | |
| 33 | #ifndef PATH_MAX |
| 34 | /** The maximum length of paths, if we don't know it. */ |
no outgoing calls
no test coverage detected