@@ -30,7 +30,7 @@ function _airy(z::Complex{Float64}, id::Int32, kode::Int32)
30
30
ai1, ai2 = Ref {Float64} (), Ref {Float64} ()
31
31
ae1, ae2 = Ref {Int32} (), Ref {Int32} ()
32
32
33
- ccall ((:zairy_ ,openspecfun), Void ,
33
+ ccall ((:zairy_ ,openspecfun), Cvoid ,
34
34
(Ref{Float64}, Ref{Float64}, Ref{Int32}, Ref{Int32},
35
35
Ref{Float64}, Ref{Float64}, Ref{Int32}, Ref{Int32}),
36
36
real (z), imag (z), id, kode,
@@ -47,7 +47,7 @@ function _biry(z::Complex{Float64}, id::Int32, kode::Int32)
47
47
ai1, ai2 = Ref {Float64} (), Ref {Float64} ()
48
48
ae1 = Ref {Int32} ()
49
49
50
- ccall ((:zbiry_ ,openspecfun), Void ,
50
+ ccall ((:zbiry_ ,openspecfun), Cvoid ,
51
51
(Ref{Float64}, Ref{Float64}, Ref{Int32}, Ref{Int32},
52
52
Ref{Float64}, Ref{Float64}, Ref{Int32}),
53
53
real (z), imag (z), id, kode,
@@ -176,7 +176,7 @@ function _besselh(nu::Float64, k::Int32, z::Complex{Float64}, kode::Int32)
176
176
ai1, ai2 = Ref {Float64} (), Ref {Float64} ()
177
177
ae1, ae2 = Ref {Int32} (), Ref {Int32} ()
178
178
179
- ccall ((:zbesh_ ,openspecfun), Void ,
179
+ ccall ((:zbesh_ ,openspecfun), Cvoid ,
180
180
(Ref{Float64}, Ref{Float64}, Ref{Float64}, Ref{Int32}, Ref{Int32}, Ref{Int},
181
181
Ref{Float64}, Ref{Float64}, Ref{Int32}, Ref{Int32}),
182
182
real (z), imag (z), nu, kode, k, 1 ,
@@ -193,7 +193,7 @@ function _besseli(nu::Float64, z::Complex{Float64}, kode::Int32)
193
193
ai1, ai2 = Ref {Float64} (), Ref {Float64} ()
194
194
ae1, ae2 = Ref {Int32} (), Ref {Int32} ()
195
195
196
- ccall ((:zbesi_ ,openspecfun), Void ,
196
+ ccall ((:zbesi_ ,openspecfun), Cvoid ,
197
197
(Ref{Float64}, Ref{Float64}, Ref{Float64}, Ref{Int32}, Ref{Int32},
198
198
Ref{Float64}, Ref{Float64}, Ref{Int32}, Ref{Int32}),
199
199
real (z), imag (z), nu, kode, 1 ,
@@ -210,7 +210,7 @@ function _besselj(nu::Float64, z::Complex{Float64}, kode::Int32)
210
210
ai1, ai2 = Ref {Float64} (), Ref {Float64} ()
211
211
ae1, ae2 = Ref {Int32} (), Ref {Int32} ()
212
212
213
- ccall ((:zbesj_ ,openspecfun), Void ,
213
+ ccall ((:zbesj_ ,openspecfun), Cvoid ,
214
214
(Ref{Float64}, Ref{Float64}, Ref{Float64}, Ref{Int32}, Ref{Int32},
215
215
Ref{Float64}, Ref{Float64}, Ref{Int32}, Ref{Int32}),
216
216
real (z), imag (z), nu, kode, 1 ,
@@ -227,7 +227,7 @@ function _besselk(nu::Float64, z::Complex{Float64}, kode::Int32)
227
227
ai1, ai2 = Ref {Float64} (), Ref {Float64} ()
228
228
ae1, ae2 = Ref {Int32} (), Ref {Int32} ()
229
229
230
- ccall ((:zbesk_ ,openspecfun), Void ,
230
+ ccall ((:zbesk_ ,openspecfun), Cvoid ,
231
231
(Ref{Float64}, Ref{Float64}, Ref{Float64}, Ref{Int32}, Ref{Int32},
232
232
Ref{Float64}, Ref{Float64}, Ref{Int32}, Ref{Int32}),
233
233
real (z), imag (z), nu, kode, 1 ,
@@ -245,7 +245,7 @@ function _bessely(nu::Float64, z::Complex{Float64}, kode::Int32)
245
245
ae1, ae2 = Ref {Int32} (), Ref {Int32} ()
246
246
wrk1, wrk2 = Ref {Float64} (), Ref {Float64} ()
247
247
248
- ccall ((:zbesy_ ,openspecfun), Void ,
248
+ ccall ((:zbesy_ ,openspecfun), Cvoid ,
249
249
(Ref{Float64}, Ref{Float64}, Ref{Float64}, Ref{Int32}, Ref{Int32},
250
250
Ref{Float64}, Ref{Float64}, Ref{Int32}, Ref{Float64}, Ref{Float64}, Ref{Int32}),
251
251
real (z), imag (z), nu, kode, 1 ,
0 commit comments