~ chicken-core (chicken-5) e72705b5d8ab9fcabdd06f390a2d87a2f4a37338
commit e72705b5d8ab9fcabdd06f390a2d87a2f4a37338 Author: felix <felix@call-with-current-continuation.org> AuthorDate: Mon Oct 5 12:03:44 2020 +0200 Commit: felix <felix@call-with-current-continuation.org> CommitDate: Mon Oct 5 12:03:44 2020 +0200 added C_SIZEOF_BYTEVCTOR macro diff --git a/chicken.h b/chicken.h index d75fe04f..e8bf65af 100644 --- a/chicken.h +++ b/chicken.h @@ -467,6 +467,7 @@ void *alloca (); #define C_SIZEOF_CPLXNUM 3 #define C_SIZEOF_STRUCTURE(n) ((n)+1) #define C_SIZEOF_CLOSURE(n) ((n)+1) +#define C_SIZEOF_BYTEVECTOR C_SIZEOF_STRING #define C_SIZEOF_INTERNAL_BIGNUM_VECTOR(n) (C_SIZEOF_VECTOR((n)+1)) #define C_internal_bignum_vector(b) (C_block_item(b,0))Trap