diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2014-04-23 19:09:50 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2014-04-23 19:09:50 +0000 |
commit | 0318e6af453efd19299493ac4091b024c8687ce1 (patch) | |
tree | 450a0b4da12bb1effc5d7f18da2e0ad07109b50d /lib/libcrypto/modes/modes_lcl.h | |
parent | 5a950e4cb6f8225ea989e4e1e12cdf6f3b064ee7 (diff) |
Unifdef -UPEDANTIC. ok beck@ tedu@
Diffstat (limited to 'lib/libcrypto/modes/modes_lcl.h')
-rw-r--r-- | lib/libcrypto/modes/modes_lcl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libcrypto/modes/modes_lcl.h b/lib/libcrypto/modes/modes_lcl.h index 9057f7fd76c..2fc81382734 100644 --- a/lib/libcrypto/modes/modes_lcl.h +++ b/lib/libcrypto/modes/modes_lcl.h @@ -34,7 +34,7 @@ typedef unsigned char u8; # undef STRICT_ALIGNMENT #endif -#if !defined(PEDANTIC) && !defined(OPENSSL_NO_ASM) && !defined(OPENSSL_NO_INLINE_ASM) +#if !defined(OPENSSL_NO_ASM) && !defined(OPENSSL_NO_INLINE_ASM) #if defined(__GNUC__) && __GNUC__>=2 # if defined(__x86_64) || defined(__x86_64__) # define BSWAP8(x) ({ u64 ret=(x); \ |