ARRFfree
Synopsis
SUBROUTINE ARRFfree(array_ptr)
INTEGER array_ptr
Description
For a complete description of this function, see ARRfree.On 64-bit platforms, the first argument to ARRFree is actually an INTEGER*8
Arguements
array_ptr
The address of a memory location, expressed as an integer.
Examples
none.
#include <avs/omf.inc> INTEGER iaddr C On 64-bit platforms, iaddr should be INTEGER*8 ... iaddr = ARRFalloc(0,DTYPE_FLOAT,2000,0) IF (iaddr .EQ. 0) PRINT*,'Error allocating memory area' call ARRFfree(iaddr)
See Also