summaryrefslogtreecommitdiff
path: root/os/src/init.c
diff options
context:
space:
mode:
authorNicolas "Pixel" Noble <pixel@nobis-crew.org>2011-01-28 21:30:52 +0100
committerNicolas "Pixel" Noble <pixel@nobis-crew.org>2011-01-28 21:30:52 +0100
commite0bb2bb3d9d04dea2bc6e46e02417f98027777b9 (patch)
tree3864cb90019657f7b1b1e7dcbb0ddb1ccf363675 /os/src/init.c
parent2def26d561b14f0fd86486dd514819c7d9c743b2 (diff)
Having the init sequence initializing the I/O subsystem of the newlib.
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 4b518ab..6d10950 100644
--- a/os/src/init.c
+++ b/os/src/init.c
@@ -21,7 +21,7 @@ void _start() {
BoardEarlyInit();
BoardConsoleInit();
BoardConsolePuts("uC-sdk - booting.");
-// __sinit(_impure_ptr);
+ __sinit(_impure_ptr);
__libc_init_array();
BoardLateInit();
atexit(__libc_fini_array);