summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/avr/ao_avr_stdio.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/avr/ao_avr_stdio.c b/src/avr/ao_avr_stdio.c
index cca2a971..fde3c421 100644
--- a/src/avr/ao_avr_stdio.c
+++ b/src/avr/ao_avr_stdio.c
@@ -21,6 +21,7 @@
int
stdio_put(char c, FILE *stream)
{
+ (void) stream;
putchar(c);
return 0;
}
@@ -28,6 +29,7 @@ stdio_put(char c, FILE *stream)
int
stdio_get(FILE *stream)
{
+ (void) stream;
return (int) getchar() & 0xff;
}