summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libc/__times.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1998-01-19 22:31:23 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1998-01-19 22:31:23 +0000
commit3294650cc34a7b1e6e669ecd4f95fba26ac4b97d (patch)
tree9fd2ae3c986a4dd9bf71fdf7a8e0cf1645ee5e92 /c/src/lib/libc/__times.c
parentmore info from Eric (diff)
downloadrtems-3294650cc34a7b1e6e669ecd4f95fba26ac4b97d.tar.bz2
Added _times_r.
Diffstat (limited to '')
-rw-r--r--c/src/lib/libc/__times.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/c/src/lib/libc/__times.c b/c/src/lib/libc/__times.c
index 406ef9999c..d0b96a8657 100644
--- a/c/src/lib/libc/__times.c
+++ b/c/src/lib/libc/__times.c
@@ -63,3 +63,10 @@ clock_t times(
return _times( ptms );
}
+clock_t _times_r(
+ struct _reent *ptr,
+ struct tms *ptms
+)
+{
+ return _times(ptms);
+}