Files
RedBear-OS/src/c/stack_chk.c
T
2023-03-10 11:33:53 -07:00

11 lines
188 B
C

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