diff options
Diffstat (limited to 'Include')
-rw-r--r-- | Include/object.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Include/object.h b/Include/object.h index 081bb86..f644be3 100644 --- a/Include/object.h +++ b/Include/object.h @@ -146,6 +146,11 @@ typedef struct { object *(*nb_xor) FPROTO((object *, object *)); object *(*nb_or) FPROTO((object *, object *)); int (*nb_coerce) FPROTO((object **, object **)); + object *(*nb_int) FPROTO((object *)); + object *(*nb_long) FPROTO((object *)); + object *(*nb_float) FPROTO((object *)); + object *(*nb_oct) FPROTO((object *)); + object *(*nb_hex) FPROTO((object *)); } number_methods; typedef struct { |