c
c
c =========================================================
subroutine src(maxmx,meqn,mbc,ibx,mx,q,
& aux,maux,t,dt,ibnd)
c =========================================================
c
c # dummy subroutine for use when equation has no source term.
c # If method(5)=0 then this routine is never called, but its
c # existence is required.
c
implicit double precision(a-h,o-z)
dimension q(meqn, 1-ibx*mbc:maxmx+ibx*mbc)
dimension aux(maux, 1-ibx*mbc:maxmx+ibx*mbc)
c
return
end