From 95e73160d7cb7c60034daa8a42ef97fb95646867 Mon Sep 17 00:00:00 2001 From: Kelvin Lawson Date: Tue, 16 Feb 2010 22:52:53 +0000 Subject: [PATCH] Formatting changes --- ports/avr/tests-main.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ports/avr/tests-main.c b/ports/avr/tests-main.c index 72e0156..0f61ee1 100644 --- a/ports/avr/tests-main.c +++ b/ports/avr/tests-main.c @@ -65,7 +65,7 @@ * * In this case we use the default startup stack location used by * avr-gcc of the top of RAM (defined as RAMEND). After the OS - * is started this allocation is no longer required,therefore + * is started this allocation is no longer required, therefore * you could alternatively use some location which you know that * your application will not use until the OS is started. Note * that you cannot use the idle thread or main thread stack here @@ -121,6 +121,7 @@ static uint8_t idle_thread_stack[IDLE_STACK_SIZE_BYTES]; /* STDIO stream */ static FILE uart_stdout = FDEV_SETUP_STREAM(uart_putchar, NULL, _FDEV_SETUP_WRITE); + /* Forward declarations */ static void main_thread_func (uint32_t data);