aboutsummaryrefslogtreecommitdiff
path: root/py/vstr.c
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2014-06-21 22:43:22 +0300
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2014-06-21 22:43:22 +0300
commit59c675a64c1d9757d50ad4627da67a6f996a99fb (patch)
tree8a5163fe244f5d5c61aa92c179aeb54ddea37610 /py/vstr.c
parent4c4b9d15ab94dfe31ec34559ab70bafc0ef11f02 (diff)
py: Include mpconfig.h before all other includes.
It defines types used by all other headers. Fixes #691.
Diffstat (limited to 'py/vstr.c')
-rw-r--r--py/vstr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/vstr.c b/py/vstr.c
index ea6a1c937..f8b7e4dab 100644
--- a/py/vstr.c
+++ b/py/vstr.c
@@ -29,8 +29,8 @@
#include <stdarg.h>
#include <string.h>
#include <assert.h>
-#include "misc.h"
#include "mpconfig.h"
+#include "misc.h"
// returned value is always at least 1 greater than argument
#define ROUND_ALLOC(a) (((a) & ((~0) - 7)) + 8)