aboutsummaryrefslogtreecommitdiff
path: root/libgloss/mn10300
diff options
context:
space:
mode:
authorAlexandre Oliva <aoliva@redhat.com>2000-05-24 19:49:44 +0000
committerAlexandre Oliva <aoliva@redhat.com>2000-05-24 19:49:44 +0000
commite6dfde6f82dc1a477e8cbfad83548da8a31c1f2c (patch)
tree855635ab69f037f95b143c368272a9c909c52715 /libgloss/mn10300
parent4b9f883e84172b0d36aec73c23c02dd7577949bd (diff)
downloadnewlib-e6dfde6f82dc1a477e8cbfad83548da8a31c1f2c.zip
newlib-e6dfde6f82dc1a477e8cbfad83548da8a31c1f2c.tar.gz
newlib-e6dfde6f82dc1a477e8cbfad83548da8a31c1f2c.tar.bz2
* mn10300/time.c (time): Set *tloc, since the sim doesn't.
Diffstat (limited to 'libgloss/mn10300')
-rw-r--r--libgloss/mn10300/time.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/libgloss/mn10300/time.c b/libgloss/mn10300/time.c
index 2df8d48..4528631 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;
}