summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cpukit/libcsupport/src/__gettod.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/cpukit/libcsupport/src/__gettod.c b/cpukit/libcsupport/src/__gettod.c
index d987637d39..91ad5d67fd 100644
--- a/cpukit/libcsupport/src/__gettod.c
+++ b/cpukit/libcsupport/src/__gettod.c
@@ -35,9 +35,10 @@
int gettimeofday(
struct timeval *tp,
- struct timezone *tzp
+ void * __tz
)
{
+ /* struct timezone* tzp = (struct timezone*) __tz; */
if ( !tp ) {
errno = EFAULT;
return -1;