Merged in dachary/jerasure/wip-init (pull request #17)

make galois_init_default_field(int w) extern
master
Kevin Greenan 2014-04-08 15:57:55 -07:00
commit 9e6b3483a3
2 changed files with 2 additions and 1 deletions

View File

@ -46,6 +46,7 @@
extern "C" {
#endif
extern void galois_init_default_field(int w);
extern void galois_change_technique(gf_t *gf, int w);
extern int galois_single_multiply(int a, int b, int w);

View File

@ -168,7 +168,7 @@ gf_t* galois_init_composite_field(int w,
return gfp;
}
static void galois_init_default_field(int w)
void galois_init_default_field(int w)
{
if (w <= 0 || w > 32) {
fprintf(stderr, "ERROR -- cannot init default Galois field for w=%d\n", w);