diff --git a/libgloss/ChangeLog b/libgloss/ChangeLog index 2d4c17a19..c5fadb8f6 100644 --- a/libgloss/ChangeLog +++ b/libgloss/ChangeLog @@ -1,3 +1,7 @@ +Wed May 24 16:47:12 2000 Alexandre Oliva + + * mn10300/time.c (time): Set *tloc, since the sim doesn't. + Mon Jan 31 18:45:26 2000 Donald Lindsay * mips/crt0.S: If compiled into a mips2 multilib, sets processor diff --git a/libgloss/mn10300/time.c b/libgloss/mn10300/time.c index 2df8d48d2..452863148 100644 --- a/libgloss/mn10300/time.c +++ b/libgloss/mn10300/time.c @@ -7,5 +7,9 @@ time_t time (time_t *tloc) { - return TRAP0 (SYS_time, tloc, 0, 0); + time_t res; + res = TRAP0 (SYS_time, 0, 0, 0); + if (tloc) + *tloc = res; + return res; }