Files
RedBear-OS/src/c/stack_chk.c
T
2018-07-12 07:40:53 -06:00

11 lines
155 B
C

#include <stdint.h>
void abort();
uintptr_t __stack_chk_guard = 0xd048c37519fcadfe;
__attribute__((noreturn))
void __stack_chk_fail(void) {
abort();
}