summaryrefslogtreecommitdiff
path: root/otherlibs/unix/gmtime.c
diff options
context:
space:
mode:
authorDamien Doligez <damien.doligez-inria.fr>1998-10-26 19:19:32 +0000
committerDamien Doligez <damien.doligez-inria.fr>1998-10-26 19:19:32 +0000
commit3be947947e3249a9b362fc790d377e43c4108a62 (patch)
treefa0c0fbdd5b3148f926e2f7f15090f7bd7d9a44d /otherlibs/unix/gmtime.c
parent59cb8750d21154c767d7224cd0f726b5da62d59b (diff)
downloadocaml-3be947947e3249a9b362fc790d377e43c4108a62.tar.gz
nouvelles fonctions alloc/alloc_small
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@2134 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'otherlibs/unix/gmtime.c')
-rw-r--r--otherlibs/unix/gmtime.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/otherlibs/unix/gmtime.c b/otherlibs/unix/gmtime.c
index bbab949a5b..0ecf8b99b3 100644
--- a/otherlibs/unix/gmtime.c
+++ b/otherlibs/unix/gmtime.c
@@ -5,7 +5,7 @@
/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */
/* */
/* Copyright 1996 Institut National de Recherche en Informatique et */
-/* Automatique. Distributed only by permission. */
+/* en Automatique. Distributed only by permission. */
/* */
/***********************************************************************/
@@ -20,7 +20,7 @@
static value alloc_tm(struct tm *tm)
{
value res;
- res = alloc_tuple(9);
+ res = alloc_small(9, 0);
Field(res,0) = Val_int(tm->tm_sec);
Field(res,1) = Val_int(tm->tm_min);
Field(res,2) = Val_int(tm->tm_hour);
@@ -69,7 +69,7 @@ value unix_mktime(value t) /* ML */
clock = mktime(&tm);
tmval = alloc_tm(&tm);
clkval = copy_double((double) clock);
- res = alloc_tuple(2);
+ res = alloc_small(2, 0);
Field(res, 0) = clkval;
Field(res, 1) = tmval;
End_roots ();