0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-03-08 14:34:53 -05:00
bitcoin-core/num_gmp.h
2013-03-31 03:46:01 +02:00

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