MALLOC(3F) — FORTRAN LIBRARY ROUTINES
NAME
malloc − allocate an amount of memory and return the address
SYNOPSIS
function malloc()
DESCRIPTION
The function MALLOC() allocates an area of memory and returns the address of the start of that area. The argument to the function is an integer specifying the amount of memory to be allocated, in bytes. If successful, it returns a pointer to the first element of the region, otherwise it returns an integer 0. The region of memory is not initialized in any way — assume it is garbage.
FILES
/usr/lang/f77/libF77.a
SEE ALSO
Sun Release 4.1 — Last change: 23 November 1989