Author: mattip <[email protected]>
Branch: 
Changeset: r76371:fb59c90861c3
Date: 2015-03-14 20:00 +0200
http://bitbucket.org/pypy/pypy/changeset/fb59c90861c3/

Log:    C89 for visual 2008 c compiler

diff --git a/rpython/translator/c/src/mem.c b/rpython/translator/c/src/mem.c
--- a/rpython/translator/c/src/mem.c
+++ b/rpython/translator/c/src/mem.c
@@ -29,9 +29,9 @@
 RPY_EXTERN
 void pypy_debug_alloc_stop(void *addr)
 {
+  struct pypy_debug_alloc_s **p;
   if (!addr)
        return;
-  struct pypy_debug_alloc_s **p;
   for (p = &pypy_debug_alloc_list; *p; p = &((*p)->next))
     if ((*p)->addr == addr)
       {
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to