diff options
author | Damien Doligez <damien.doligez-inria.fr> | 2000-05-03 15:26:17 +0000 |
---|---|---|
committer | Damien Doligez <damien.doligez-inria.fr> | 2000-05-03 15:26:17 +0000 |
commit | 4f2fc4758c01b516e21d0fd332058fdc2347a821 (patch) | |
tree | f31fd8207a39456f010b74cedb676ec779d0d161 /otherlibs/macosunix/macosunix.c | |
parent | 96ce6abe031f87c6f64f3552c01516fa798981ca (diff) |
MacOS: petits bugs
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@3144 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'otherlibs/macosunix/macosunix.c')
-rw-r--r-- | otherlibs/macosunix/macosunix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/otherlibs/macosunix/macosunix.c b/otherlibs/macosunix/macosunix.c index a554886c9..ce40f5c3a 100644 --- a/otherlibs/macosunix/macosunix.c +++ b/otherlibs/macosunix/macosunix.c @@ -76,7 +76,7 @@ value unix_getpid (void) /* ML */ value unix_time (void) /* ML */ { - return copy_double (time (NULL) - 2082844800.); + return copy_double (time (NULL) /* - 2082844800. */); } value unix_times (void) /* ML */ |