Add <sys/auxv.h> and getauxval.
[glibc.git] / sysdeps / i386 / stackguard-macros.h
blob8c31e197e147234e385d7246f506bc036ea47d88
1 #include <stdint.h>
3 #define STACK_CHK_GUARD \
4 ({ uintptr_t x; asm ("movl %%gs:0x14, %0" : "=r" (x)); x; })