allocate-MatrixNorm0_Full.inc
#ifndef use_allocatable
# if defined(mms)
memerr = .false.
# endif
# include "pointer_init-MatrixNorm0_Full.inc"
#endif
#ifdef use_allocatable
allocate(rowsum(nrows), stat=memerr)
if (memerr .ne. 0) then
#else
# if defined(mmsl)
call MMGETBLK ('rowsum-M', 'rm0_Full',
& iprowsum, (nrows), 1, memerr)
if (memerr .ne. 0) then
# elif defined(mms)
call CGETVAR ('rowsum-M', (nrows), iprowsum, memerr)
if (memerr) then
# elif defined(sun) || defined(hpux) || defined(irix) || defined(osf1)
iprowsum = MALLOC (bytes_per_real*(nrows))
if (iprowsum .eq. 0) then
# elif defined(aix)
iprowsum = MALLOC (%val(bytes_per_real*(nrows)))
if (iprowsum .eq. 0) then
# elif defined(cray)
call HPALLOC (iprowsum, (nrows), memerr, 0)
if (memerr .ne. 0) then
# endif
#endif
status = -2
goto 9999
endif