0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-02-13 11:25:02 -05:00
bitcoin-bitcoin-core/num_gmp.h
2013-03-30 21:23:06 +01:00

10 lines
133 B
C

#ifndef _SECP256K1_NUM_GMP_
#define _SECP256K1_NUM_GMP_
#include <gmp.h>
typedef struct {
mpz_t bn;
} secp256k1_num_t;
#endif