From 9e14ca27ef0ea4c2866b943556168e2d4fd25eb6 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Tue, 15 Sep 2009 09:29:55 +0000 Subject: Add __attribute__((unused)) to function arguments. --- cpukit/libcsupport/src/__gettod.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cpukit/libcsupport/src/__gettod.c') diff --git a/cpukit/libcsupport/src/__gettod.c b/cpukit/libcsupport/src/__gettod.c index 91ad5d67fd..17a1125b77 100644 --- a/cpukit/libcsupport/src/__gettod.c +++ b/cpukit/libcsupport/src/__gettod.c @@ -35,7 +35,7 @@ int gettimeofday( struct timeval *tp, - void * __tz + void * __tz __attribute__((unused)) ) { /* struct timezone* tzp = (struct timezone*) __tz; */ @@ -67,7 +67,7 @@ int gettimeofday( */ int _gettimeofday_r( - struct _reent *ignored_reentrancy_stuff, + struct _reent *ignored_reentrancy_stuff __attribute__((unused)), struct timeval *tp, struct timezone *tzp ) -- cgit v1.2.3