bfree | basic | EMF |
Free a dynamic block of memory allocated with balloc.
void bfree(B_ARGS_DEC, void *buf);
B_ARGS_DEC | Callers source file name and line number. Really two arguments. |
buf | Pointer to buffer to free |
The bfree procedure releases a block of memory back to the balloc free queues. Memory is not actually freed to the operating system, but is kept locally for future use.
Use B_L as the first argument to bfree to provide the source file name and line number arguments.
No return value
bfree(B_L, buf);