Squashed 'src/secp256k1/' changes from 84973d393..0b7024185
[bitcoinplatinum.git] / src / num_impl.h
blobc45193b033dab813c0ec30697f23fd60098b8e9a
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 **********************************************************************/
7 #ifndef SECP256K1_NUM_IMPL_H
8 #define SECP256K1_NUM_IMPL_H
10 #if defined HAVE_CONFIG_H
11 #include "libsecp256k1-config.h"
12 #endif
14 #include "num.h"
16 #if defined(USE_NUM_GMP)
17 #include "num_gmp_impl.h"
18 #elif defined(USE_NUM_NONE)
19 /* Nothing. */
20 #else
21 #error "Please select num implementation"
22 #endif
24 #endif /* SECP256K1_NUM_IMPL_H */