zsinh.f 226 Bytes
complex(8) function zsinh (z)
      implicit none
c april 1977 version.  w. fullerton, c3, los alamos scientific lab.
      complex(8) z, ci
      data ci /(0.,1.)/
c
      zsinh = -ci*sin(ci*z)
c
      return
      end