Skip to content

Commit

Permalink
Fix mismerge by adding prototype required to avoid warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
briansmith committed Dec 23, 2016
1 parent a5f93fe commit e3a804a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions crypto/ec/ecp_nistz384.inl
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@

#include "ecp_nistz.h"

/* Avoid -Wmissing-prototypes warnings. */
void GFp_nistz384_point_mul(P384_POINT *r, const BN_ULONG p_scalar[P384_LIMBS],
const BN_ULONG p_x[P384_LIMBS],
const BN_ULONG p_y[P384_LIMBS]);


static BN_ULONG is_infinity(const BN_ULONG x[P384_LIMBS],
const BN_ULONG y[P384_LIMBS]) {
BN_ULONG acc = 0;
Expand Down

0 comments on commit e3a804a

Please sign in to comment.