summaryrefslogtreecommitdiff
path: root/src/avr/ao_avr_stdio.c
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2011-08-25 22:55:33 -0700
committerKeith Packard <keithp@keithp.com>2011-08-25 22:57:24 -0700
commit8125acc030574afed6f23aa8aa302d9c768bb04e (patch)
tree906aaf22c3674080df89c6e756a0195d2aab2bf9 /src/avr/ao_avr_stdio.c
parente9fab7dc99a0e7c22b511c5919adf7df85213252 (diff)
altos: get avr-demo to build. Pull in AVR drivers and LCD driver
This completes the basic task of making an AVR version of altos by getting the Teensy 'avr-demo' program to build. Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/avr/ao_avr_stdio.c')
-rw-r--r--src/avr/ao_avr_stdio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/avr/ao_avr_stdio.c b/src/avr/ao_avr_stdio.c
index 2f358eb5..ba562dbf 100644
--- a/src/avr/ao_avr_stdio.c
+++ b/src/avr/ao_avr_stdio.c
@@ -44,7 +44,7 @@ static FILE mystdout = FDEV_SETUP_STREAM(stdio_put, NULL, _FDEV_SETUP_WRITE);
static FILE mystdin = FDEV_SETUP_STREAM(NULL, stdio_get, _FDEV_SETUP_READ);
void
-ao_stdio_init(void)
+ao_avr_stdio_init(void)
{
stdout = &mystdout;
stdin = &mystdin;