Browse Source

fix another couple undeclared / misnamed function bugs

master
Mike Hamburg 10 years ago
parent
commit
bcf7c88da8
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      src/decaf.c
  2. +1
    -1
      test/test_arithmetic.c

+ 1
- 1
src/decaf.c View File

@@ -468,7 +468,7 @@ void decaf_point_double(decaf_point_t a, const decaf_point_t b) {
decaf_point_add(a,b,b);
}

void decaf_copy (
void decaf_point_copy (
decaf_point_t a,
const decaf_point_t b
) {


+ 1
- 1
test/test_arithmetic.c View File

@@ -8,7 +8,7 @@
mpz_t mp_field;
mpz_t mp_scalar_field;

void decaf_scalar_print (
static void decaf_scalar_print (
const char *descr,
const decaf_scalar_t scalar
) {


Loading…
Cancel
Save