mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-12 12:10:16 +00:00
5 lines
118 B
C
5 lines
118 B
C
|
#include <stdint.h>
|
||
|
|
||
|
#define STACK_CHK_GUARD \
|
||
|
({ uintptr_t x; asm ("ear %0,%%a0; l %0,0x14(%0)" : "=a" (x)); x; })
|