These wrappers get constness correct. */
| 194 | |
| 195 | /* These wrappers get constness correct. */ |
| 196 | static inline bool ptr_valid_r(const void *p, size_t align, size_t size) |
| 197 | { |
| 198 | return ptr_valid(p, align, size, false); |
| 199 | } |
| 200 | |
| 201 | static inline bool ptr_valid_w(void *p, size_t align, size_t size) |
| 202 | { |
nothing calls this directly
no test coverage detected