cosmetic change

This commit is contained in:
NIIBE Yutaka 2014-01-22 16:57:19 +09:00
parent c29bd10555
commit 29e76d0ba7
2 changed files with 3 additions and 0 deletions

View File

@ -131,6 +131,7 @@ mod_reduce (bn256 *X, const bn512 *A, const bn256 *B, const bn256 *MU_lower)
memcpy (q, X, sizeof (bn256)); memcpy (q, X, sizeof (bn256));
else else
memcpy (X, q, sizeof (bn256)); memcpy (X, q, sizeof (bn256));
#undef borrow
} }
/** /**
@ -339,4 +340,5 @@ mod_inv (bn256 *C, const bn256 *X, const bn256 *N)
break; break;
} }
} }
#undef borrow
} }

View File

@ -432,4 +432,5 @@ modp256_shift (bn256 *X, const bn256 *A, int shift)
memcpy (tmp, X, sizeof (bn256)); memcpy (tmp, X, sizeof (bn256));
else else
memcpy (X, tmp, sizeof (bn256)); memcpy (X, tmp, sizeof (bn256));
#undef borrow
} }