From 51dfcb4bb7613ed164952712d9a5235a7b833cde Mon Sep 17 00:00:00 2001 From: Damien George Date: Thu, 1 Jan 2015 20:27:54 +0000 Subject: py: Move to guarded includes, everywhere in py/ core. Addresses issue #1022. --- py/vstr.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'py/vstr.c') diff --git a/py/vstr.c b/py/vstr.c index 03b03d0a3..e87aef9e4 100644 --- a/py/vstr.c +++ b/py/vstr.c @@ -24,13 +24,13 @@ * THE SOFTWARE. */ -#include #include #include #include #include -#include "mpconfig.h" -#include "misc.h" + +#include "py/mpconfig.h" +#include "py/misc.h" // returned value is always at least 1 greater than argument #define ROUND_ALLOC(a) (((a) & ((~0) - 7)) + 8) -- cgit v1.2.3