From d334b60b04556cff0692d332336411f664153c6e Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Sun, 22 Sep 2013 10:22:01 -0500 Subject: __gettod.c: Fix missing prototype warnings --- cpukit/libcsupport/src/__gettod.c | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/cpukit/libcsupport/src/__gettod.c b/cpukit/libcsupport/src/__gettod.c index a07497d2f1..fe913dcc54 100644 --- a/cpukit/libcsupport/src/__gettod.c +++ b/cpukit/libcsupport/src/__gettod.c @@ -19,7 +19,13 @@ #endif #if defined(RTEMS_NEWLIB) +/* + * Needed to get the prototype for the newlib helper method + */ +#define _COMPILING_NEWLIB + #include +#include #include #include #include @@ -66,9 +72,10 @@ int gettimeofday( int _gettimeofday_r( struct _reent *ignored_reentrancy_stuff __attribute__((unused)), struct timeval *tp, - struct timezone *tzp + void *__tz ) { + struct timezone *tzp = __tz; return gettimeofday( tp, tzp ); } #endif @@ -79,10 +86,12 @@ int _gettimeofday_r( * "System call" version */ int _gettimeofday( - struct timeval *tp, - struct timezone *tzp + struct timeval *tp, + void *__tz ) { + struct timezone *tzp = __tz; + return gettimeofday( tp, tzp ); } #endif -- cgit v1.2.3