0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-03-06 14:19:59 -05:00

Remove traces of old mpz-based num

This commit is contained in:
Pieter Wuille 2013-04-30 16:04:33 +02:00
parent f491cd35df
commit 42f5e7c58d
2 changed files with 2 additions and 6 deletions

View file

@ -3,9 +3,7 @@
#include "../num.h"
#if defined(USE_NUM_GMPN)
#include "num_gmpn.h"
#elif defined(USE_NUM_GMP)
#if defined(USE_NUM_GMP)
#include "num_gmp.h"
#elif defined(USE_NUM_OPENSSL)
#include "num_openssl.h"

View file

@ -1,9 +1,7 @@
#ifndef _SECP256K1_NUM_
#define _SECP256K1_NUM_
#if defined(USE_NUM_GMPN)
#include "num_gmpn.h"
#elif defined(USE_NUM_GMP)
#if defined(USE_NUM_GMP)
#include "num_gmp.h"
#elif defined(USE_NUM_OPENSSL)
#include "num_openssl.h"