diff options
-rw-r--r-- | Include/funcobject.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/funcobject.h b/Include/funcobject.h index 835a21b..329cf71 100644 --- a/Include/funcobject.h +++ b/Include/funcobject.h @@ -4,6 +4,6 @@ extern typeobject Functype; #define is_funcobject(op) ((op)->ob_type == &Functype) -extern object *newfuncobject PROTO((node *, object *)); -extern node *getfuncnode PROTO((object *)); +extern object *newfuncobject PROTO((object *, object *)); +extern object *getfunccode PROTO((object *)); extern object *getfuncglobals PROTO((object *)); |