diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 2002-03-02 09:16:39 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 2002-03-02 09:16:39 +0000 |
commit | bddfe5d0cecccc8aa995fe95c4af5cbc41743747 (patch) | |
tree | 5ca9135daa03b182b678b4ca01092f103be27549 /byterun/ints.c | |
parent | 00d7dbf924dccb864a839fdfa86001e9fe48142e (diff) |
Ajout operations sur gros fichiers
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@4474 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'byterun/ints.c')
-rw-r--r-- | byterun/ints.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/byterun/ints.c b/byterun/ints.c index e9ad19401..b28807bc5 100644 --- a/byterun/ints.c +++ b/byterun/ints.c @@ -267,10 +267,6 @@ CAMLexport int64 Int64_val(value v) return buffer.j; } -CAMLexport void Store_int64(value v, int64 i) -{ -} - #endif static int int64_compare(value v1, value v2) @@ -452,7 +448,7 @@ CAMLprim value int64_float_of_bits(value vi) #else static char int64_error[] = - "The type Int64.t is not supported on this platform"; + "The type int64 is not supported on this platform"; value copy_int64(int64 i) { invalid_argument(int64_error); } |