pythonrun.h: added run_pyc_file
ceval.h: added Py_AddPendingCall
rest: modules using the new naming scheme must now include Python.h
diff --git a/Include/ceval.h b/Include/ceval.h
index 3b16085..695c0c7 100644
--- a/Include/ceval.h
+++ b/Include/ceval.h
@@ -40,6 +40,8 @@
 void printtraceback PROTO((object *));
 void flushline PROTO((void));
 
+int Py_AddPendingCall PROTO((int (*func) PROTO((ANY *)), ANY *arg));
+
 
 /* Interface for threads.