* mn10300/time.c (time): Set *tloc, since the sim doesn't.
This commit is contained in:
parent
4b9f883e84
commit
e6dfde6f82
|
@ -1,3 +1,7 @@
|
||||||
|
Wed May 24 16:47:12 2000 Alexandre Oliva <aoliva@cygnus.com>
|
||||||
|
|
||||||
|
* mn10300/time.c (time): Set *tloc, since the sim doesn't.
|
||||||
|
|
||||||
Mon Jan 31 18:45:26 2000 Donald Lindsay <dlindsay@cygnus.com>
|
Mon Jan 31 18:45:26 2000 Donald Lindsay <dlindsay@cygnus.com>
|
||||||
|
|
||||||
* mips/crt0.S: If compiled into a mips2 multilib, sets processor
|
* mips/crt0.S: If compiled into a mips2 multilib, sets processor
|
||||||
|
|
|
@ -7,5 +7,9 @@
|
||||||
time_t
|
time_t
|
||||||
time (time_t *tloc)
|
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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue