You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by ut...@apache.org on 2018/10/10 17:42:31 UTC

[mynewt-core] branch master updated: Don't overwrite __libc_init_array and implement _init instead.

This is an automated email from the ASF dual-hosted git repository.

utzig pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-core.git


The following commit(s) were added to refs/heads/master by this push:
     new e60a39f  Don't overwrite __libc_init_array and implement _init instead.
e60a39f is described below

commit e60a39ff0db28b3447c337261f9a1a991e595d0e
Author: Markus Lampert <ma...@bibi.ca>
AuthorDate: Mon Sep 10 21:26:30 2018 -0700

    Don't overwrite __libc_init_array and implement _init instead.
---
 libc/baselibc/src/start.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libc/baselibc/src/start.c b/libc/baselibc/src/start.c
index 6067387..b163a3e 100644
--- a/libc/baselibc/src/start.c
+++ b/libc/baselibc/src/start.c
@@ -39,6 +39,6 @@ void _start(void)
 }
 
 void
-__libc_init_array(void)
+_init(void)
 {
 }