TRACE_REFS -> Py_TRACE_REFS
diff --git a/Python/sysmodule.c b/Python/sysmodule.c
index 10dd061..17845f0 100644
--- a/Python/sysmodule.c
+++ b/Python/sysmodule.c
@@ -182,7 +182,7 @@
 }
 #endif
 
-#ifdef TRACE_REFS
+#ifdef Py_TRACE_REFS
 extern PyObject *getobjects Py_PROTO((PyObject *, PyObject *));
 #endif
 static struct methodlist sys_methods[] = {
@@ -191,7 +191,7 @@
 #ifdef COUNT_ALLOCS
 	{"getcounts",	sys_getcounts, 0},
 #endif
-#ifdef TRACE_REFS
+#ifdef Py_TRACE_REFS
 	{"getobjects",	getobjects, 1},
 #endif
 #ifdef USE_MALLOPT