42_KFS/src/ssp.c
2025-02-04 11:57:54 +01:00

13 lines
222 B
C

#include "kpanic.h"
#include <stdint.h>
#define STACK_CHK_GUARD 0xe2dee396
uintptr_t __stack_chk_guard = STACK_CHK_GUARD;
__attribute__((noreturn)) void __stack_chk_fail(void)
{
kpanic("Stack smashing detected\n");
}