Free memory allocated with my_malloc. @remark Relies on free being able to handle a NULL argument. @param ptr Pointer to the memory allocated by my_malloc. */
| 134 | @param ptr Pointer to the memory allocated by my_malloc. |
| 135 | */ |
| 136 | void my_free(void *ptr) |
| 137 | { |
| 138 | DBUG_ENTER("my_free"); |
| 139 | DBUG_PRINT("my",("ptr: %p", ptr)); |
| 140 | free(ptr); |
| 141 | DBUG_VOID_RETURN; |
| 142 | } |
| 143 | |
| 144 | |
| 145 | void *my_memdup(const void *from, size_t length, myf my_flags) |
no outgoing calls