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