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:
John Safranek
2022-01-14 17:19:01 -08:00
parent 2085624a29
commit e724622506

View File

@@ -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.