Final step in converting to C

This commit is contained in:
Pieter Wuille
2013-04-01 07:52:58 +02:00
parent d41e93a5e2
commit eb0be8eec6
23 changed files with 74 additions and 128 deletions

View File

@@ -4,8 +4,6 @@
#include "num.h"
#include "group.h"
extern "C" {
static void secp256k1_ecmult_start(void);
static void secp256k1_ecmult_stop(void);
@@ -14,6 +12,4 @@ static void secp256k1_ecmult_gen(secp256k1_gej_t *r, const secp256k1_num_t *a);
/** Double multiply: R = na*A + ng*G */
static void secp256k1_ecmult(secp256k1_gej_t *r, const secp256k1_gej_t *a, const secp256k1_num_t *na, const secp256k1_num_t *ng);
}
#endif