diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 1998-11-05 12:53:32 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 1998-11-05 12:53:32 +0000 |
commit | 449f929debc9350fe484d4115a0dda6efe752ec1 (patch) | |
tree | 777e1967591d68d58b4d402d3b84cc9b1eb993fe /byterun/mlvalues.h | |
parent | f34112893059287080dcc06e5d4e0dd2b7dc50ef (diff) |
Declaration de string_length dans <mlvalues.h>. Suppression de <str.h> ainsi rendu inutile.
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@2152 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'byterun/mlvalues.h')
-rw-r--r-- | byterun/mlvalues.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/byterun/mlvalues.h b/byterun/mlvalues.h index b976307ae..e52da1e92 100644 --- a/byterun/mlvalues.h +++ b/byterun/mlvalues.h @@ -202,6 +202,7 @@ typedef opcode_t * code_t; /* Strings. */ #define String_tag 252 #define String_val(x) ((char *) Bp_val(x)) +mlsize_t string_length (value); /* Floating-point numbers. */ #define Double_tag 253 |