bfree basic EMF

Synopsis

Free a dynamic block of memory allocated with balloc.

Prototypes

void bfree(B_ARGS_DEC, void *buf);

Parameters

B_ARGS_DEC Callers source file name and line number. Really two arguments.
buf Pointer to buffer to free

Description

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.

Return Value

No return value

Example

bfree(B_L, buf);

See Also

balloc, bopen