summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/bn/bn.h
diff options
context:
space:
mode:
authorderaadt <>2014-06-27 06:07:35 +0000
committerderaadt <>2014-06-27 06:07:35 +0000
commitfd6338db9db0aa87673a9fb6d1abc0ebb4507099 (patch)
treea15b222a92fe994ec9b207cf12743f2f3cb61fa8 /src/lib/libcrypto/bn/bn.h
parent83921e06b0fd7ce1393248d64f8cd3b5265d9790 (diff)
downloadopenbsd-fd6338db9db0aa87673a9fb6d1abc0ebb4507099.tar.gz
openbsd-fd6338db9db0aa87673a9fb6d1abc0ebb4507099.tar.bz2
openbsd-fd6338db9db0aa87673a9fb6d1abc0ebb4507099.zip
hand-KNF macro the do { } while loops
Diffstat (limited to 'src/lib/libcrypto/bn/bn.h')
-rw-r--r--src/lib/libcrypto/bn/bn.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libcrypto/bn/bn.h b/src/lib/libcrypto/bn/bn.h
index ca2d69c705..155adf4fe0 100644
--- a/src/lib/libcrypto/bn/bn.h
+++ b/src/lib/libcrypto/bn/bn.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: bn.h,v 1.23 2014/06/12 15:49:28 deraadt Exp $ */ 1/* $OpenBSD: bn.h,v 1.24 2014/06/27 06:07:35 deraadt Exp $ */
2/* Copyright (C) 1995-1997 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1997 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -346,6 +346,7 @@ int BN_GENCB_call(BN_GENCB *cb, int a, int b);
346 _tmp_bn->top = 0; \ 346 _tmp_bn->top = 0; \
347 _tmp_bn->neg = 0; \ 347 _tmp_bn->neg = 0; \
348 } while(0) 348 } while(0)
349
349#ifdef OPENSSL_NO_DEPRECATED 350#ifdef OPENSSL_NO_DEPRECATED
350#define BN_zero(a) BN_zero_ex(a) 351#define BN_zero(a) BN_zero_ex(a)
351#else 352#else