* Wrapper to free(3), hides const compilation noise, permit NULL, return NULL. * @param p memory to free * @retval NULL always */
| 17 | * @retval NULL always |
| 18 | */ |
| 19 | static inline void * |
| 20 | _free(const void * p) |
| 21 | { |
| 22 | if (p != NULL) free((void *)p); |
| 23 | return NULL; |
| 24 | } |
| 25 | |
| 26 | /* Bit mask macros. */ |
| 27 | typedef unsigned int __pbm_bits; |
no outgoing calls
no test coverage detected