@@ -1594,15 +1594,17 @@ end subroutine giza_get_panel_c
15941594 end interface
15951595
15961596 interface giza_vector
1597- subroutine giza_vector_double (sizex ,sizey ,horizontal ,vertical ,i1 ,i2 ,j1 ,j2 ,scale ,position ,affine ,blank ) bind(C, name= " giza_vector" )
1597+ subroutine giza_vector_double (sizex ,sizey ,horizontal ,vertical ,i1 ,i2 ,j1 ,j2 ,&
1598+ scale ,position ,affine ,blank ) bind(C, name= " giza_vector" )
15981599 import
15991600 integer (kind= c_int),intent (in ),value :: sizex,sizey,i1,i2,j1,j2,position
16001601 real (kind= c_double),intent (in ) :: horizontal(sizex,sizey),vertical(sizex,sizey)
16011602 real (kind= c_double),intent (in ),value :: scale,blank
16021603 real (kind= c_double),intent (in ) :: affine(6 )
16031604 end subroutine giza_vector_double
16041605
1605- subroutine giza_vector_float (sizex ,sizey ,horizontal ,vertical ,i1 ,i2 ,j1 ,j2 ,scale ,position ,affine ,blank ) bind(C)
1606+ subroutine giza_vector_float (sizex ,sizey ,horizontal ,vertical ,i1 ,i2 ,j1 ,j2 ,&
1607+ scale ,position ,affine ,blank ) bind(C)
16061608 import
16071609 integer (kind= c_int),intent (in ),value :: sizex,sizey,i1,i2,j1,j2,position
16081610 real (kind= c_float),intent (in ) :: horizontal(sizex,sizey),vertical(sizex,sizey)
@@ -1685,7 +1687,8 @@ end subroutine giza_set_window_double
16851687 end interface
16861688
16871689 interface giza_set_window_equal_scale
1688- subroutine giza_set_window_equal_scale_double (x1 ,x2 ,y1 ,y2 ) bind(C, name= " giza_set_window_equal_scale" )
1690+ subroutine giza_set_window_equal_scale_double (x1 ,x2 ,y1 ,y2 ) &
1691+ bind(C, name= " giza_set_window_equal_scale" )
16891692 import
16901693 real (kind= c_double), value, intent (in ) :: x1,x2,y1,y2
16911694 end subroutine giza_set_window_equal_scale_double
@@ -1897,7 +1900,8 @@ integer function giza_intern_open_device_size(dev,prefix,width,height,units)
18971900 real ,intent (in ) :: width,height
18981901 integer , intent (in ) :: units
18991902
1900- giza_intern_open_device_size = giza_open_device_size_c(cstring(dev),cstring(prefix),width,height,units)
1903+ giza_intern_open_device_size = giza_open_device_size_c(cstring(dev),&
1904+ cstring(prefix),width,height,units)
19011905
19021906 end function giza_intern_open_device_size
19031907
0 commit comments