mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-23 09:50:40 -03:00
14 lines
150 B
C
14 lines
150 B
C
#ifndef _SECP256K1_NUM_GMP_
|
|
#define _SECP256K1_NUM_GMP_
|
|
|
|
#include <gmp.h>
|
|
|
|
extern "C" {
|
|
|
|
typedef struct {
|
|
mpz_t bn;
|
|
} secp256k1_num_t;
|
|
|
|
}
|
|
|
|
#endif
|