Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/syscalls/systimes.c')
-rw-r--r--newlib/libc/syscalls/systimes.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/newlib/libc/syscalls/systimes.c b/newlib/libc/syscalls/systimes.c
index 353553be7..cc30a3e38 100644
--- a/newlib/libc/syscalls/systimes.c
+++ b/newlib/libc/syscalls/systimes.c
@@ -7,9 +7,5 @@ clock_t
_DEFUN (times, (buf),
struct tms *buf)
{
-#ifdef REENTRANT_SYSCALLS_PROVIDED
return _times_r (_REENT, buf);
-#else
- return _times (buf);
-#endif
}