@@ -379,12 +379,6 @@ extern "C" {
379
379
tweak : * const c_uchar )
380
380
-> c_int ;
381
381
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
-
388
382
#[ cfg_attr( not( rust_secp_no_symbol_renaming) , link_name = "rustsecp256k1_v0_5_0_keypair_sec" ) ]
389
383
pub fn secp256k1_keypair_sec ( cx : * const Context ,
390
384
output_seckey : * mut c_uchar ,
@@ -396,12 +390,6 @@ extern "C" {
396
390
output_pubkey : * mut PublicKey ,
397
391
keypair : * const KeyPair )
398
392
-> 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 ;
405
393
}
406
394
407
395
#[ cfg( not( fuzzing) ) ]
@@ -446,6 +434,12 @@ extern "C" {
446
434
pk : * mut PublicKey ) -> c_int ;
447
435
448
436
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
+
449
443
#[ cfg_attr( not( rust_secp_no_symbol_renaming) , link_name = "rustsecp256k1_v0_5_0_ec_pubkey_tweak_add" ) ]
450
444
pub fn secp256k1_ec_pubkey_tweak_add ( cx : * const Context ,
451
445
pk : * mut PublicKey ,
@@ -552,6 +546,13 @@ extern "C" {
552
546
pubkey : * const PublicKey ,
553
547
) -> c_int ;
554
548
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
+
555
556
#[ cfg_attr( not( rust_secp_no_symbol_renaming) , link_name = "rustsecp256k1_v0_5_0_xonly_pubkey_tweak_add" ) ]
556
557
pub fn secp256k1_xonly_pubkey_tweak_add (
557
558
cx : * const Context ,
0 commit comments