File tree Expand file tree Collapse file tree
Modules/_ctypes/libffi/include Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -188,7 +188,7 @@ typedef union {
188188} ffi_raw ;
189189
190190void ffi_raw_call (/*@dependent@*/ ffi_cif * cif ,
191- void (* fn )(),
191+ void (* fn )(void ),
192192 /*@out@*/ void * rvalue ,
193193 /*@dependent@*/ ffi_raw * avalue );
194194
@@ -201,7 +201,7 @@ size_t ffi_raw_size (ffi_cif *cif);
201201/* longs and doubles are followed by an empty 64-bit word. */
202202
203203void ffi_java_raw_call (/*@dependent@*/ ffi_cif * cif ,
204- void (* fn )(),
204+ void (* fn )(void ),
205205 /*@out@*/ void * rvalue ,
206206 /*@dependent@*/ ffi_raw * avalue );
207207
@@ -270,7 +270,7 @@ ffi_status ffi_prep_cif(/*@out@*/ /*@partial@*/ ffi_cif *cif,
270270 /*@dependent@*/ ffi_type * * atypes );
271271
272272void ffi_call (/*@dependent@*/ ffi_cif * cif ,
273- void (* fn )(),
273+ void (* fn )(void ),
274274 /*@out@*/ void * rvalue ,
275275 /*@dependent@*/ void * * avalue );
276276
You can’t perform that action at this time.
0 commit comments