diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2015-06-29 06:40:07 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2015-06-29 06:40:07 +0000 |
commit | 6dc1d0ee115cd311781bc3c41f5d5b8fe361eab2 (patch) | |
tree | 2454d55a790fa42f535ff04d4c395912bf2d7a4f /lib | |
parent | 2c08af893b428c0681a33275ba1e69dbafd27a87 (diff) |
fix the build on arm after the recent addition of -Wundef
ok doug@ deraadt@
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libcrypto/arm_arch.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libcrypto/arm_arch.h b/lib/libcrypto/arm_arch.h index 2ad95dc62ab..3304be81ab1 100644 --- a/lib/libcrypto/arm_arch.h +++ b/lib/libcrypto/arm_arch.h @@ -1,4 +1,4 @@ -/* $OpenBSD: arm_arch.h,v 1.6 2014/12/07 15:37:27 miod Exp $ */ +/* $OpenBSD: arm_arch.h,v 1.7 2015/06/29 06:40:06 jsg Exp $ */ #ifndef __ARM_ARCH_H__ #define __ARM_ARCH_H__ @@ -38,7 +38,7 @@ # endif #endif -#if !__ASSEMBLER__ +#if !defined(__ASSEMBLER__) extern unsigned int OPENSSL_armcap_P; #define ARMV7_NEON (1<<0) |