CVSROOT: /cvs Module name: src Changes by: [email protected] 2023/04/11 04:26:29
Modified files:
lib/libcrypto/sha: sha512.c
Log message:
Omit sha512_block_data_order() prototype when assembly is not being used.
In the case that the pure C implementation of SHA512 is being used, the
prototype is unnecessary as the function is declared static and exists
in dependency order. Simply omit the prototype rather than using #ifndef
to toggle the static prefix.
ok tb@
