Changeset 2eadda9 in mainline for uspace/lib/c/arch/abs32le/src/entry.c
- Timestamp:
- 2018-07-11T17:45:30Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 99d3123
- Parents:
- c2c4127
- git-author:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-07-11 17:08:12)
- git-committer:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-07-11 17:45:30)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/arch/abs32le/src/entry.c
rc2c4127 r2eadda9 30 30 */ 31 31 32 #include "../../../generic/private/libc.h"33 32 #include <stddef.h> 34 33 35 34 extern void _start(void); 35 extern void __c_start(void *); 36 36 37 37 /* Normally, the entry point is defined in assembly for the architecture. */ … … 39 39 void _start(void) 40 40 { 41 __ libc_main(NULL);41 __c_start(NULL); 42 42 } 43 43
Note:
See TracChangeset
for help on using the changeset viewer.