summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/__gettod.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2015-03-09 13:18:36 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2015-03-10 08:56:06 +0100
commit1f671565ab228e54d038fd1ca2f6e4aeeb4170b2 (patch)
tree5b657f6706273a1c5d4580d24d0e1905b4af5b7b /cpukit/libcsupport/src/__gettod.c
parentposix: Change sem_t to the 32-bit object type (diff)
downloadrtems-1f671565ab228e54d038fd1ca2f6e4aeeb4170b2.tar.bz2
libcsupport: Delete superfluous _gettimeofday()
Diffstat (limited to 'cpukit/libcsupport/src/__gettod.c')
-rw-r--r--cpukit/libcsupport/src/__gettod.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/cpukit/libcsupport/src/__gettod.c b/cpukit/libcsupport/src/__gettod.c
index 0b1ea97380..b0b60de367 100644
--- a/cpukit/libcsupport/src/__gettod.c
+++ b/cpukit/libcsupport/src/__gettod.c
@@ -80,20 +80,4 @@ int _gettimeofday_r(
}
#endif
-#if defined(RTEMS_NEWLIB) && !defined(HAVE__GETTIMEOFDAY)
-
-/**
- * "System call" version
- */
-int _gettimeofday(
- struct timeval *tp,
- void *__tz
-)
-{
- struct timezone *tzp = __tz;
-
- return gettimeofday( tp, tzp );
-}
-#endif
-
#endif /* defined(RTEMS_NEWLIB) */