summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Zimmermann <Paul.Zimmermann@inria.fr>2017-08-25 09:32:18 +0200
committerPaul Zimmermann <Paul.Zimmermann@inria.fr>2017-08-25 09:32:18 +0200
commita3f939169482a4c502d276e1b3c814b0ea63f423 (patch)
tree99cdabc9e40469fbaa716c6331afd0b29931c7dc
parent0c6c1efe96d177368df130556686e65d0e6bca54 (diff)
downloadmpc-git-a3f939169482a4c502d276e1b3c814b0ea63f423.tar.gz
stdio.h is needed for MPC_ASSERT
-rw-r--r--src/rootofunity.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rootofunity.c b/src/rootofunity.c
index 45d7cab..50af1e3 100644
--- a/src/rootofunity.c
+++ b/src/rootofunity.c
@@ -18,8 +18,8 @@ You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see http://www.gnu.org/licenses/ .
*/
+#include <stdio.h> /* for MPC_ASSERT */
#include "mpc-impl.h"
-#include <assert.h>
static unsigned long
gcd (unsigned long a, unsigned long b)