summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
Diffstat (limited to 'Include')
-rw-r--r--Include/ceval.h1
-rw-r--r--Include/longobject.h1
-rw-r--r--Include/node.h1
-rw-r--r--Include/pythonrun.h4
4 files changed, 0 insertions, 7 deletions
diff --git a/Include/ceval.h b/Include/ceval.h
index a6948f1..1c830c3 100644
--- a/Include/ceval.h
+++ b/Include/ceval.h
@@ -35,7 +35,6 @@ object *call_object PROTO((object *, object *));
object *getglobals PROTO((void));
object *getlocals PROTO((void));
object *getowner PROTO((void));
-void mergelocals PROTO((void));
void printtraceback PROTO((object *));
void flushline PROTO((void));
diff --git a/Include/longobject.h b/Include/longobject.h
index 7566a38..1b048fd 100644
--- a/Include/longobject.h
+++ b/Include/longobject.h
@@ -41,7 +41,6 @@ extern object *dnewlongobject PROTO((double));
extern long getlongvalue PROTO((object *));
extern double dgetlongvalue PROTO((object *));
-object *long_format PROTO((object *, int));
object *long_scan PROTO((char *, int));
#ifdef __cplusplus
diff --git a/Include/node.h b/Include/node.h
index bfae7da..84238df 100644
--- a/Include/node.h
+++ b/Include/node.h
@@ -61,7 +61,6 @@ extern void freetree PROTO((node *n));
#endif
extern void listtree PROTO((node *));
-extern void listnode PROTO((FILE *, node *));
#ifdef __cplusplus
}
diff --git a/Include/pythonrun.h b/Include/pythonrun.h
index cc5bb05..e25a3de 100644
--- a/Include/pythonrun.h
+++ b/Include/pythonrun.h
@@ -42,12 +42,8 @@ int run_tty_loop PROTO((FILE *, char *));
int parse_string PROTO((char *, int, struct _node **));
int parse_file PROTO((FILE *, char *, int, struct _node **));
-object *eval_node PROTO((struct _node *, char *, object *, object *));
-
object *run_string PROTO((char *, int, object *, object *));
object *run_file PROTO((FILE *, char *, int, object *, object *));
-object *run_err_node PROTO((int, struct _node *, char *, object *, object *));
-object *run_node PROTO((struct _node *, char *, object *, object *));
object *compile_string PROTO((char *, char *, int));