diff options
author | Demetri Obenour <demetriobenour@gmail.com> | 2016-01-14 12:13:31 -0500 |
---|---|---|
committer | Demi Obenour <demetriobenour@gmail.com> | 2016-05-02 20:11:21 -0400 |
commit | 483a7be3e98327ce1c92124844ccd0c2620a0899 (patch) | |
tree | 443e0e54ef3bc7c3e227940b13b7f18c61ecc1da /byterun | |
parent | b1f93a660eaba1b00b96a31e8a0dd45c4b6fe0ed (diff) | |
download | ocaml-483a7be3e98327ce1c92124844ccd0c2620a0899.tar.gz |
Reformat and note that caml_obj_is_block is unused
Diffstat (limited to 'byterun')
-rw-r--r-- | byterun/obj.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/byterun/obj.c b/byterun/obj.c index 308b0373ef..43aef05092 100644 --- a/byterun/obj.c +++ b/byterun/obj.c @@ -43,7 +43,7 @@ CAMLprim value caml_static_resize(value blk, value new_size) { return (value) caml_stat_resize((char *) blk, (asize_t) Long_val(new_size)); } - +// unused CAMLprim value caml_obj_is_block(value arg) { return Val_bool(Is_block(arg)); |