Fix build warning with missing “mp_to_unsigned_bin_at_pos” declaration.

This commit is contained in:
David Garske
2017-02-01 18:21:52 -08:00
parent 4cbfec1c7d
commit b05cfec057

View File

@ -639,6 +639,7 @@ int mp_cmp_d(mp_int *a, mp_digit b);
int mp_unsigned_bin_size(mp_int * a);
int mp_read_unsigned_bin (mp_int * a, const unsigned char *b, int c);
int mp_to_unsigned_bin_at_pos(int x, mp_int *t, unsigned char *b);
int mp_to_unsigned_bin (mp_int * a, unsigned char *b);
int mp_sub_d(fp_int *a, fp_digit b, fp_int *c);