0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-03-08 14:34:53 -05:00
bitcoin-core/num.h

13 lines
214 B
C
Raw Normal View History

2013-03-08 01:20:41 +01:00
#ifndef _SECP256K1_NUM_
#define _SECP256K1_NUM_
2013-03-13 23:42:39 +01:00
#if defined(USE_NUM_GMP)
#include "num_gmp.h"
#elif defined(USE_NUM_OPENSSL)
2013-03-13 00:28:37 +01:00
#include "num_openssl.h"
2013-03-13 23:42:39 +01:00
#else
#error "Please select num implementation"
#endif
2013-03-08 01:20:41 +01:00
#endif