py: Replace mp_const_stop_iteration object with MP_OBJ_NULL.
diff --git a/py/objrange.c b/py/objrange.c
index f80bc08..c527dfa 100644
--- a/py/objrange.c
+++ b/py/objrange.c
@@ -1,3 +1,4 @@
+#include <stdlib.h>
 
 #include "nlr.h"
 #include "misc.h"
@@ -55,7 +56,7 @@
         o->cur += o->step;
         return o_out;
     } else {
-        return mp_const_stop_iteration;
+        return MP_OBJ_NULL;
     }
 }