1
0
Fork 0
mirror of https://gitlab.com/sortix/sortix.git synced 2023-02-13 20:55:38 -05:00

Add __stack_chk_fail_local needed by some architectures.

This commit is contained in:
Jonas 'Sortie' Termansen 2021-12-04 11:33:01 +01:00
parent 4ed2bb1c50
commit e65ff1827c

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2014, 2015 Jonas 'Sortie' Termansen.
* Copyright (c) 2014, 2015, 2021 Jonas 'Sortie' Termansen.
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -53,3 +53,9 @@ void __stack_chk_fail(void)
scram(SCRAM_STACK_SMASH, NULL);
#endif
}
__attribute__((noreturn))
void __stack_chk_fail_local(void)
{
__stack_chk_fail();
}