diff options
Diffstat (limited to 'src/math/field.c')
| -rw-r--r-- | src/math/field.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/math/field.c b/src/math/field.c index 08172bf..3774040 100644 --- a/src/math/field.c +++ b/src/math/field.c @@ -7,9 +7,9 @@ #include "poly.h" #include "random.h" -GEN field_primer(long bits) { return random_prime(bits); } +static GEN field_primer(long bits) { return random_prime(bits); } -GEN field_binaryr(long bits) { +static GEN field_binaryr(long bits) { if (poly_exists(bits)) { return poly_find_gen(bits); } else { |
