@@ -379,12 +379,6 @@ extern "C" {
379379 tweak : * const c_uchar )
380380 -> c_int ;
381381
382- #[ cfg_attr( not( rust_secp_no_symbol_renaming) , link_name = "rustsecp256k1_v0_5_0_ec_pubkey_cmp" ) ]
383- pub fn secp256k1_ec_pubkey_cmp ( cx : * const Context ,
384- pubkey1 : * const PublicKey ,
385- pubkey2 : * const PublicKey )
386- -> c_int ;
387-
388382 #[ cfg_attr( not( rust_secp_no_symbol_renaming) , link_name = "rustsecp256k1_v0_5_0_keypair_sec" ) ]
389383 pub fn secp256k1_keypair_sec ( cx : * const Context ,
390384 output_seckey : * mut c_uchar ,
@@ -396,12 +390,6 @@ extern "C" {
396390 output_pubkey : * mut PublicKey ,
397391 keypair : * const KeyPair )
398392 -> c_int ;
399-
400- #[ cfg_attr( not( rust_secp_no_symbol_renaming) , link_name = "rustsecp256k1_v0_5_0_xonly_pubkey_cmp" ) ]
401- pub fn secp256k1_xonly_pubkey_cmp ( cx : * const Context ,
402- pubkey1 : * const XOnlyPublicKey ,
403- pubkey2 : * const XOnlyPublicKey )
404- -> c_int ;
405393}
406394
407395#[ cfg( not( fuzzing) ) ]
@@ -446,6 +434,12 @@ extern "C" {
446434 pk : * mut PublicKey ) -> c_int ;
447435
448436
437+ #[ cfg_attr( not( rust_secp_no_symbol_renaming) , link_name = "rustsecp256k1_v0_5_0_ec_pubkey_cmp" ) ]
438+ pub fn secp256k1_ec_pubkey_cmp ( cx : * const Context ,
439+ pubkey1 : * const PublicKey ,
440+ pubkey2 : * const PublicKey )
441+ -> c_int ;
442+
449443 #[ cfg_attr( not( rust_secp_no_symbol_renaming) , link_name = "rustsecp256k1_v0_5_0_ec_pubkey_tweak_add" ) ]
450444 pub fn secp256k1_ec_pubkey_tweak_add ( cx : * const Context ,
451445 pk : * mut PublicKey ,
@@ -552,6 +546,13 @@ extern "C" {
552546 pubkey : * const PublicKey ,
553547 ) -> c_int ;
554548
549+ #[ cfg_attr( not( rust_secp_no_symbol_renaming) , link_name = "rustsecp256k1_v0_5_0_xonly_pubkey_cmp" ) ]
550+ pub fn secp256k1_xonly_pubkey_cmp (
551+ cx : * const Context ,
552+ pubkey1 : * const XOnlyPublicKey ,
553+ pubkey2 : * const XOnlyPublicKey
554+ ) -> c_int ;
555+
555556 #[ cfg_attr( not( rust_secp_no_symbol_renaming) , link_name = "rustsecp256k1_v0_5_0_xonly_pubkey_tweak_add" ) ]
556557 pub fn secp256k1_xonly_pubkey_tweak_add (
557558 cx : * const Context ,
0 commit comments