compat: Fix sha256 on Dragonfly at least

This commit is contained in:
Roy Marples 2025-11-10 22:02:49 +00:00
parent 9c69fb33d0
commit 20cee56872

View File

@ -24,8 +24,12 @@
* SUCH DAMAGE.
*/
#include <inttypes.h>
/* For BSD */
#if (defined(__unix__) || defined(unix)) && !defined(USG)
#include <sys/param.h>
#endif
#include <inttypes.h>
#include <string.h>
#ifdef __GLIBC__