diff --git a/src/lib/libc/hash/sha1.c b/src/lib/libc/hash/sha1.c index d4d6c8f7..6d2be6a3 100644 --- a/src/lib/libc/hash/sha1.c +++ b/src/lib/libc/hash/sha1.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sha1.c,v 1.5 1997/07/10 22:52:59 millert Exp $ */ +/* $OpenBSD: sha1.c,v 1.6 1997/07/11 04:17:10 millert Exp $ */ /* * SHA-1 in C @@ -18,7 +18,7 @@ #include #include -#include "sha1.h" +#include #define rol(value, bits) (((value) << (bits)) | ((value) >> (32 - (bits))))