Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions libs/libc/assert/lib_stackchk.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
* Public Data
****************************************************************************/

FAR const void *const __stack_chk_guard = &__stack_chk_guard;
weak_data FAR const void *const __stack_chk_guard = &__stack_chk_guard;

/****************************************************************************
* Public Functions
Expand All @@ -52,7 +52,7 @@ FAR const void *const __stack_chk_guard = &__stack_chk_guard;
*
****************************************************************************/

void __stack_chk_fail(void)
void weak_function __stack_chk_fail(void)
{
PANIC();
}
Loading