PatchworkOS
Loading...
Searching...
No Matches
stack_chk.c
Go to the documentation of this file.
1#include <stdint.h>
2#include <stdlib.h>
3
4#if UINT32_MAX == UINTPTR_MAX
5#define STACK_CHK_GUARD 0xe2dee396
6#else
7#define STACK_CHK_GUARD 0x595e9fbd94fda766
8#endif
9
11
13{
14 abort();
15}
#define _NORETURN
Definition config.h:28
uintptr_t __stack_chk_guard
Definition stack_chk.c:10
_NORETURN void __stack_chk_fail(void)
Definition stack_chk.c:12
#define STACK_CHK_GUARD
Definition stack_chk.c:5
__UINTPTR_TYPE__ uintptr_t
Definition stdint.h:43
_PUBLIC _NORETURN void abort(void)
Definition abort.c:7