ceval.h: added Py_MakePendingCalls()
classobject.h: added instancebinop()
modsupport.h: added newgetargs()
rename1.h: removed Py_FPROTO
diff --git a/Include/modsupport.h b/Include/modsupport.h
index a1f3f1c..69378cd 100644
--- a/Include/modsupport.h
+++ b/Include/modsupport.h
@@ -35,6 +35,7 @@
 #include <stdarg.h>
 
 extern int getargs PROTO((object *, char *, ...));
+extern int newgetargs PROTO((object *, char *, ...));
 extern object *mkvalue PROTO((char *, ...));
 
 #else