Changeset 7148abf in mainline for uspace/lib/c/generic
- Timestamp:
- 2018-04-28T16:18:07Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e634684
- Parents:
- 3fafe5e0
- Location:
- uspace/lib/c/generic
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/libc.c
r3fafe5e0 r7148abf 67 67 static bool env_setup = false; 68 68 69 void __ main(void *pcb_ptr)69 void __libc_main(void *pcb_ptr) 70 70 { 71 71 /* Initialize user task run-time environment */ -
uspace/lib/c/generic/private/libc.h
r3fafe5e0 r7148abf 37 37 38 38 extern unsigned char _end[]; 39 extern void __ main(void *) __attribute__((noreturn));39 extern void __libc_main(void *) __attribute__((noreturn)); 40 40 extern int main(int, char *[]); 41 41
Note:
See TracChangeset
for help on using the changeset viewer.