Skip to content

Commit d651812

Browse files
Drop stdio.h include (#15)
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. Co-authored-by: Nikita Travkin <[email protected]>
1 parent 8d34c78 commit d651812

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

sha1.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ A million repetitions of "a"
1717

1818
#define SHA1HANDSOFF
1919

20-
#include <stdio.h>
2120
#include <string.h>
2221

2322
/* for uint32_t */

0 commit comments

Comments
 (0)