__attribute__ deprecated (msg) only since gcc 4.5

make it work with older compilers
This commit is contained in:
Reini Urban
2017-06-18 18:26:05 +02:00
parent c0cc9f1df9
commit 9c6cb58812

View File

@@ -315,7 +315,12 @@ ffi_prep_closure (ffi_closure*,
ffi_cif *,
void (*fun)(ffi_cif*,void*,void**,void*),
void *user_data)
__attribute__((deprecated ("use ffi_prep_closure_loc instead")));
#if defined(__GNUC__) && (((__GNUC__ * 100) + __GNUC_MINOR__) >= 405)
__attribute__((deprecated ("use ffi_prep_closure_loc instead")))
#elif defined(__GNUC__) && __GNUC__ >= 3
__attribute__((deprecated))
#endif
;
ffi_status
ffi_prep_closure_loc (ffi_closure*,