11 lines
133 B
C
11 lines
133 B
C
#ifndef _SECP256K1_NUM_GMP_
|
|
#define _SECP256K1_NUM_GMP_
|
|
|
|
#include <gmp.h>
|
|
|
|
typedef struct {
|
|
mpz_t bn;
|
|
} secp256k1_num_t;
|
|
|
|
#endif
|