summaryrefslogtreecommitdiff
path: root/os/src/init.c
diff options
context:
space:
mode:
authorNicolas "Pixel" Noble <pixel@nobis-crew.org>2011-01-28 20:11:32 +0100
committerNicolas "Pixel" Noble <pixel@nobis-crew.org>2011-01-28 20:11:32 +0100
commit9e05eaaf91c2596521e29b90ffa9adf3114c3b93 (patch)
tree150d5d7fdbb6d9fbb93a4c1277a8132e1e423a07 /os/src/init.c
parenta0f170eb2100291429d31a057977a88ece219519 (diff)
Proper mutex usage, and protecting malloc and sbrk using them. Also showing this into the demo.
Diffstat (limited to 'os/src/init.c')
-rw-r--r--os/src/init.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/os/src/init.c b/os/src/init.c
index 070fac1..4b518ab 100644
--- a/os/src/init.c
+++ b/os/src/init.c
@@ -20,7 +20,7 @@ void _exit(int return_code) {
void _start() {
BoardEarlyInit();
BoardConsoleInit();
- BoardConsolePuts("uC-sdk - booting.");
+ BoardConsolePuts("uC-sdk - booting.");
// __sinit(_impure_ptr);
__libc_init_array();
BoardLateInit();