summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/munmap.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/posix/src/munmap.c')
-rw-r--r--cpukit/posix/src/munmap.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/cpukit/posix/src/munmap.c b/cpukit/posix/src/munmap.c
index 2798326524..2496c27ab3 100644
--- a/cpukit/posix/src/munmap.c
+++ b/cpukit/posix/src/munmap.c
@@ -18,9 +18,11 @@
#include <sys/mman.h>
int munmap(
- void *addr __attribute__((unused)),
- size_t length __attribute__((unused))
+ void *addr,
+ size_t length
)
{
+ (void) addr;
+ (void) length;
return -1;
}