diff options
author | Patrick Wildt <patrick@cvs.openbsd.org> | 2016-12-23 23:22:26 +0000 |
---|---|---|
committer | Patrick Wildt <patrick@cvs.openbsd.org> | 2016-12-23 23:22:26 +0000 |
commit | 556f6aa0f4105705d2217f82268295bf9feb8d98 (patch) | |
tree | 4a85fd766a0db7af32b5bfed525934161b50a607 /lib | |
parent | 240d54f89b7f36d2121ee97fbdbfa50cefea25c2 (diff) |
Move __BEGIN_HIDDEN_DECLS out of the middle of a function declaration.
ok jca@
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libcrypto/sha/sha_locl.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libcrypto/sha/sha_locl.h b/lib/libcrypto/sha/sha_locl.h index bb5f1b20721..46c9a39be2f 100644 --- a/lib/libcrypto/sha/sha_locl.h +++ b/lib/libcrypto/sha/sha_locl.h @@ -1,4 +1,4 @@ -/* $OpenBSD: sha_locl.h,v 1.22 2016/12/21 15:49:29 jsing Exp $ */ +/* $OpenBSD: sha_locl.h,v 1.23 2016/12/23 23:22:25 patrick Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -85,12 +85,12 @@ ix=(a)=ROTATE((a),1) \ ) +__BEGIN_HIDDEN_DECLS + #ifndef SHA1_ASM static #endif -__BEGIN_HIDDEN_DECLS - void sha1_block_data_order (SHA_CTX *c, const void *p,size_t num); __END_HIDDEN_DECLS |