1 c     ddotsub.f
 2 c
 3 c     The program is a fortran wrapper for ddot.
 4 c     Witten by Keita Teranishi.  2/11/1998
 5 c
 6       subroutine ddotsub(n,x,incx,y,incy,dot)
 7 c
 8       external ddot
 9       double precision ddot
10       integer n,incx,incy
11       double precision x(*),y(*),dot
12 c
13       dot=ddot(n,x,incx,y,incy)
14       return
15       end