From 6597e5d5e2f190eddc4e96cdcad1917549c72fc8 Mon Sep 17 00:00:00 2001 From: Nikita Travkin Date: Wed, 16 Jul 2025 23:20:05 +0500 Subject: [PATCH] Drop stdio.h include The sha1.c file includes stdio.h without seemingly using it for anyhing. It doesn't make sense for a hash library to use stdio and having that header included makes it harder to use the library in freestanding environment. Drop the include to make it easier to use the library in freestanding projects. --- sha1.c | 1 - 1 file changed, 1 deletion(-) diff --git a/sha1.c b/sha1.c index 9ed1221..8c5aa89 100644 --- a/sha1.c +++ b/sha1.c @@ -17,7 +17,6 @@ A million repetitions of "a" #define SHA1HANDSOFF -#include #include /* for uint32_t */