]>
Commit | Line | Data |
---|---|---|
71712b27 GM |
1 | /********************************************************************** |
2 | * Copyright (c) 2013, 2014 Pieter Wuille * | |
3 | * Distributed under the MIT software license, see the accompanying * | |
4 | * file COPYING or http://www.opensource.org/licenses/mit-license.php.* | |
5 | **********************************************************************/ | |
0a433ea2 | 6 | |
7a4b7691 PW |
7 | #ifndef _SECP256K1_NUM_IMPL_H_ |
8 | #define _SECP256K1_NUM_IMPL_H_ | |
9 | ||
78cd96b1 CF |
10 | #if defined HAVE_CONFIG_H |
11 | #include "libsecp256k1-config.h" | |
12 | #endif | |
13 | ||
11ab5622 | 14 | #include "num.h" |
7a4b7691 | 15 | |
42f5e7c5 | 16 | #if defined(USE_NUM_GMP) |
11ab5622 | 17 | #include "num_gmp_impl.h" |
597128d3 PW |
18 | #elif defined(USE_NUM_NONE) |
19 | /* Nothing. */ | |
7a4b7691 PW |
20 | #else |
21 | #error "Please select num implementation" | |
22 | #endif | |
23 | ||
24 | #endif |