summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/funlockfile.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--cpukit/libcsupport/src/funlockfile.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/cpukit/libcsupport/src/funlockfile.c b/cpukit/libcsupport/src/funlockfile.c
index 46e8af33bb..bf409da8a3 100644
--- a/cpukit/libcsupport/src/funlockfile.c
+++ b/cpukit/libcsupport/src/funlockfile.c
@@ -24,8 +24,9 @@
/**
* This is a non-functional stub
*/
-void funlockfile(FILE* file __attribute__((unused)))
+void funlockfile(FILE* file)
{
+ (void) file;
}
#endif