I'm considering using Lua on a system offering no realloc(): only
malloc() and free().
What loss of performance could I expect by using realloc=free+malloc,
assuming the allocator is stupid enough not to immediately recycle the
same block when there is enough space?