summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src
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 /cpukit/libcsupport/src
parentmore info from Eric (diff)
downloadrtems-3294650cc34a7b1e6e669ecd4f95fba26ac4b97d.tar.bz2
Added _times_r.
Diffstat (limited to 'cpukit/libcsupport/src')
-rw-r--r--cpukit/libcsupport/src/__times.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/cpukit/libcsupport/src/__times.c b/cpukit/libcsupport/src/__times.c
index 406ef9999c..d0b96a8657 100644
--- a/cpukit/libcsupport/src/__times.c
+++ b/cpukit/libcsupport/src/__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);
+}