Ignore:
Timestamp:
2018-04-28T16:49:48Z (7 years ago)
Author:
Jiří Zárevúcky <jiri.zarevucky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
4c5f04f
Parents:
a947d32
Message:

Rename __entry to the usual _start.

Except for MIPS, where the default is __start.
This is to avoid customizations in the toolchain as much as possible.
With this change, most platforms need no customization to linker behavior
at all, thus reducing maintainance concerns.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/arch/abs32le/src/entry.c

    ra947d32 r4c4b53c  
    3333#include <stddef.h>
    3434
    35 extern void __entry(void);
     35extern void _start(void);
    3636
    3737/* Normally, the entry point is defined in assembly for the architecture. */
    3838
    39 void __entry(void)
     39void _start(void)
    4040{
    4141        __libc_main(NULL);
Note: See TracChangeset for help on using the changeset viewer.