Commit e2b95007a6c57f3155366eed729619496d541194

Francois Perrad 2019-10-20T16:47:59

pprime uses mp_word

1
2
3
4
5
6
7
8
9
10
11
12
13
14
diff --git a/etc/pprime.c b/etc/pprime.c
index 009a18c..944b5a6 100644
--- a/etc/pprime.c
+++ b/etc/pprime.c
@@ -8,6 +8,9 @@
 #include <time.h>
 #include "tommath.h"
 
+/* TODO: Remove private_mp_word as soon as deprecated mp_word is removed from tommath. */
+typedef private_mp_word mp_word;
+
 static int   n_prime;
 static FILE *primes;