summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/__times.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1998-01-30 20:59:22 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1998-01-30 20:59:22 +0000
commit421dfef68ecd8f424f987d75df3c3080108c5925 (patch)
tree9c4b8fae8fc3532ff25f3e633d3cad7dd419b942 /cpukit/libcsupport/src/__times.c
parentcorrection (diff)
downloadrtems-421dfef68ecd8f424f987d75df3c3080108c5925.tar.bz2
Corrected Linux port for glibc2
Diffstat (limited to 'cpukit/libcsupport/src/__times.c')
-rw-r--r--cpukit/libcsupport/src/__times.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/cpukit/libcsupport/src/__times.c b/cpukit/libcsupport/src/__times.c
index d0b96a8657..3a8812a8b3 100644
--- a/cpukit/libcsupport/src/__times.c
+++ b/cpukit/libcsupport/src/__times.c
@@ -63,6 +63,7 @@ clock_t times(
return _times( ptms );
}
+#if defined(RTEMS_NEWLIB)
clock_t _times_r(
struct _reent *ptr,
struct tms *ptms
@@ -70,3 +71,4 @@ clock_t _times_r(
{
return _times(ptms);
}
+#endif