Changeset 6abff2a8 in mainline for uspace/lib/c/generic/libc.c
- Timestamp:
- 2018-07-08T17:58:14Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d4475a44
- Parents:
- be0f5e4
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/libc.c
rbe0f5e4 r6abff2a8 62 62 63 63 static bool env_setup = false; 64 65 /**66 * Used for C++ constructors/destructors67 * and the GCC constructor/destructor extension.68 */69 typedef void (*init_array_entry_t)();70 extern init_array_entry_t __init_array_start[];71 extern init_array_entry_t __init_array_end[];72 typedef void (*fini_array_entry_t)();73 extern fini_array_entry_t __fini_array_start[];74 extern fini_array_entry_t __fini_array_end[];75 64 76 65 void __libc_main(void *pcb_ptr)
Note:
See TracChangeset
for help on using the changeset viewer.