deallocate-Stationary.inc
#ifdef use_allocatable
if (allocated(w)) deallocate( w )
#else
# if defined(mmsl)
if (ipw .ne. 0) then
call MMRELBLK ('w-Statio', 'ationary', ipw, memerr)
endif
# elif defined(mms)
if (ipw .ne. 0) call RELVAR ('w-Statio', memerr)
# elif defined(sun) || defined(hpux) || defined(irix) || defined(osf1)
if (ipw .ne. 0) call FREE (ipw)
# elif defined(aix)
if (ipw .ne. 0) call FREE (%val(ipw))
# elif defined(cray)
if (ipw .ne. 0) call HPDEALLC (ipw, memerr, 0)
# endif
#endif
#ifdef use_allocatable
if (allocated(xold)) deallocate( xold )
#else
# if defined(mmsl)
if (ipxold .ne. 0) then
call MMRELBLK ('xold-Sta', 'ationary', ipxold, memerr)
endif
# elif defined(mms)
if (ipxold .ne. 0) call RELVAR ('xold-Sta', memerr)
# elif defined(sun) || defined(hpux) || defined(irix) || defined(osf1)
if (ipxold .ne. 0) call FREE (ipxold)
# elif defined(aix)
if (ipxold .ne. 0) call FREE (%val(ipxold))
# elif defined(cray)
if (ipxold .ne. 0) call HPDEALLC (ipxold, memerr, 0)
# endif
#endif