diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-09-30 12:09:55 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-09-30 12:09:55 +0000 |
commit | 55ec096e3b7836e7f88de409d7c66e48328936a3 (patch) | |
tree | 6faa3bf57aa277b8570e7a1c4c64488f9ac867db /ldso | |
parent | b4d73a11770826f5195ce6ebafd4538e3755f30a (diff) |
- avoid warning about undefined preprocessor token
Diffstat (limited to 'ldso')
-rw-r--r-- | ldso/ldso/ldso.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ldso/ldso/ldso.c b/ldso/ldso/ldso.c index 7d623cea5..46cc91c63 100644 --- a/ldso/ldso/ldso.c +++ b/ldso/ldso/ldso.c @@ -104,7 +104,7 @@ uintptr_t __stack_chk_guard attribute_relro; # ifdef __UCLIBC_HAS_SSP_COMPAT__ strong_alias(__stack_chk_guard,__guard) # endif -# elif __UCLIBC_HAS_SSP_COMPAT__ +# elif defined __UCLIBC_HAS_SSP_COMPAT__ uintptr_t __guard attribute_relro; # endif #endif |