Split headers/code

This commit is contained in:
Pieter Wuille
2013-03-16 15:51:55 +01:00
18 changed files with 1704 additions and 1183 deletions

7
num.cpp Normal file
View File

@@ -0,0 +1,7 @@
#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