mirror of
https://github.com/bitcoin/bitcoin.git
synced 2024-11-20 10:38:42 +01:00
13 lines
214 B
C
13 lines
214 B
C
#ifndef _SECP256K1_NUM_
|
|
#define _SECP256K1_NUM_
|
|
|
|
#if defined(USE_NUM_GMP)
|
|
#include "num_gmp.h"
|
|
#elif defined(USE_NUM_OPENSSL)
|
|
#include "num_openssl.h"
|
|
#else
|
|
#error "Please select num implementation"
|
|
#endif
|
|
|
|
#endif
|