diff options
Diffstat (limited to 'Include/classobject.h')
-rw-r--r-- | Include/classobject.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/classobject.h b/Include/classobject.h index e8dd93a..fb52203 100644 --- a/Include/classobject.h +++ b/Include/classobject.h @@ -36,7 +36,7 @@ extern typeobject Classtype, Instancetype, Instancemethodtype; #define is_instanceobject(op) ((op)->ob_type == &Instancetype) #define is_instancemethodobject(op) ((op)->ob_type == &Instancemethodtype) -extern object *newclassobject PROTO((object *, object *)); +extern object *newclassobject PROTO((object *, object *, object *)); extern object *newinstanceobject PROTO((object *)); extern object *newinstancemethodobject PROTO((object *, object *)); |