summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/tcsendbreak.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libcsupport/src/tcsendbreak.c')
-rw-r--r--cpukit/libcsupport/src/tcsendbreak.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/cpukit/libcsupport/src/tcsendbreak.c b/cpukit/libcsupport/src/tcsendbreak.c
index af7ea4c85b..300e7a8f85 100644
--- a/cpukit/libcsupport/src/tcsendbreak.c
+++ b/cpukit/libcsupport/src/tcsendbreak.c
@@ -26,7 +26,9 @@
#include <rtems/libio.h>
-int tcsendbreak ( int fd, int duration )
+int tcsendbreak (
+ int fd __attribute__((unused)),
+ int duration __attribute__((unused)) )
{
return 0;
}