mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-12 04:42:36 -03:00
7 lines
161 B
C++
7 lines
161 B
C++
#if defined(USE_NUM_GMP)
|
|
#include "num_gmp.cpp"
|
|
#elif defined(USE_NUM_OPENSSL)
|
|
#include "num_openssl.cpp"
|
|
#else
|
|
#error "Please select num implementation"
|
|
#endif
|