1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00

Split up stackguard-macros.h into sysdeps directories.

This commit is contained in:
Joseph Myers
2012-05-15 23:34:30 +00:00
parent 9317101683
commit a9538892ad
12 changed files with 53 additions and 34 deletions

View File

@ -0,0 +1,4 @@
#include <stdint.h>
#define STACK_CHK_GUARD \
({ uintptr_t x; asm ("ld [%%g7+0x14], %0" : "=r" (x)); x; })