forked from wolfSSL/wolfssl
Old Compiler Warning Cleanup (GCC 4.0.2)
ge_operations.c: Added the keyword `inline` to several function prototypes for functions declared `inline`.
This commit is contained in:
@@ -61,16 +61,16 @@ static void ge_p2_0(ge_p2 *);
|
|||||||
static void ge_precomp_0(ge_precomp *);
|
static void ge_precomp_0(ge_precomp *);
|
||||||
#endif
|
#endif
|
||||||
static void ge_p3_to_p2(ge_p2 *,const ge_p3 *);
|
static void ge_p3_to_p2(ge_p2 *,const ge_p3 *);
|
||||||
static void ge_p3_to_cached(ge_cached *,const ge_p3 *);
|
static WC_INLINE void ge_p3_to_cached(ge_cached *,const ge_p3 *);
|
||||||
static void ge_p1p1_to_p2(ge_p2 *,const ge_p1p1 *);
|
static void ge_p1p1_to_p2(ge_p2 *,const ge_p1p1 *);
|
||||||
static void ge_p1p1_to_p3(ge_p3 *,const ge_p1p1 *);
|
static WC_INLINE void ge_p1p1_to_p3(ge_p3 *,const ge_p1p1 *);
|
||||||
static void ge_p2_dbl(ge_p1p1 *,const ge_p2 *);
|
static WC_INLINE void ge_p2_dbl(ge_p1p1 *,const ge_p2 *);
|
||||||
static void ge_p3_dbl(ge_p1p1 *,const ge_p3 *);
|
static void ge_p3_dbl(ge_p1p1 *,const ge_p3 *);
|
||||||
|
|
||||||
static void ge_madd(ge_p1p1 *,const ge_p3 *,const ge_precomp *);
|
static WC_INLINE void ge_madd(ge_p1p1 *,const ge_p3 *,const ge_precomp *);
|
||||||
static void ge_msub(ge_p1p1 *,const ge_p3 *,const ge_precomp *);
|
static WC_INLINE void ge_msub(ge_p1p1 *,const ge_p3 *,const ge_precomp *);
|
||||||
static void ge_add(ge_p1p1 *,const ge_p3 *,const ge_cached *);
|
static WC_INLINE void ge_add(ge_p1p1 *,const ge_p3 *,const ge_cached *);
|
||||||
static void ge_sub(ge_p1p1 *,const ge_p3 *,const ge_cached *);
|
static WC_INLINE void ge_sub(ge_p1p1 *,const ge_p3 *,const ge_cached *);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
ge means group element.
|
ge means group element.
|
||||||
|
Reference in New Issue
Block a user