diff options
author | miod <> | 2014-04-23 19:09:49 +0000 |
---|---|---|
committer | miod <> | 2014-04-23 19:09:49 +0000 |
commit | ba54475bcdd808f5501d943b18017bccbabd7bf5 (patch) | |
tree | 2f0bbc95834194b0eb3a2e2149c853e29107e563 /src/lib/libcrypto/des | |
parent | 7386fc3d9177d598eb0bcef6e82db575c9472048 (diff) | |
download | openbsd-ba54475bcdd808f5501d943b18017bccbabd7bf5.tar.gz openbsd-ba54475bcdd808f5501d943b18017bccbabd7bf5.tar.bz2 openbsd-ba54475bcdd808f5501d943b18017bccbabd7bf5.zip |
Unifdef -UPEDANTIC. ok beck@ tedu@
Diffstat (limited to 'src/lib/libcrypto/des')
-rw-r--r-- | src/lib/libcrypto/des/des_locl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/libcrypto/des/des_locl.h b/src/lib/libcrypto/des/des_locl.h index bbae457377..00fcd2a8ac 100644 --- a/src/lib/libcrypto/des/des_locl.h +++ b/src/lib/libcrypto/des/des_locl.h | |||
@@ -152,7 +152,7 @@ | |||
152 | } \ | 152 | } \ |
153 | } | 153 | } |
154 | 154 | ||
155 | #if defined(__GNUC__) && __GNUC__>=2 && !defined(__STRICT_ANSI__) && !defined(OPENSSL_NO_ASM) && !defined(OPENSSL_NO_INLINE_ASM) && !defined(PEDANTIC) | 155 | #if defined(__GNUC__) && __GNUC__>=2 && !defined(__STRICT_ANSI__) && !defined(OPENSSL_NO_ASM) && !defined(OPENSSL_NO_INLINE_ASM) |
156 | # if defined(__i386) || defined(__i386__) || defined(__x86_64) || defined(__x86_64__) | 156 | # if defined(__i386) || defined(__i386__) || defined(__x86_64) || defined(__x86_64__) |
157 | # define ROTATE(a,n) ({ register unsigned int ret; \ | 157 | # define ROTATE(a,n) ({ register unsigned int ret; \ |
158 | asm ("rorl %1,%0" \ | 158 | asm ("rorl %1,%0" \ |