DOKK / manpages / debian 10 / alliance / autfreeblock.3.en
AUTFREEBLOCK(3) AUT FUNCTIONS AUTFREEBLOCK(3)

autfreeblock - releases a memory block

See the file buster/alliance/alc_origin.1.en.gz.

#include "aut101.h"
void autfreeblock( Pointer )

char ∗ Pointer;

Pointer to be given back to the system

autfreeblock frees a pointer. It is now a day just an encapsulation of the system free function, but may evolve to a special allocator in the future. Its use is strongly encouraged.

autfreeblock returns nothing.

#include "aut101.h"

char ∗Pointer;
Pointer = autallocblock( 1024 );
...
autfreeblock( Pointer );

aut(1), autresizeblock(3), autallocheap(3), autallocblock(3), autfreeheap(3).

See the file buster/alliance/alc_bug_report.1.en.gz.

October 1, 1997 ASIM/LIP6