diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-07-11 04:17:11 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-07-11 04:17:11 +0000 |
commit | 64bb7c2c3e824302a97042198ee31d127b56dd8f (patch) | |
tree | 9898761bf4aaa2daae84e9f72cc6aac5acd47cea | |
parent | bc484f8589c0aff0ce49b1e179e7eadc0c8bd5c9 (diff) |
#include <sha1.h> not #include "sha1.h"
-rw-r--r-- | lib/libc/hash/sha1.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/hash/sha1.c b/lib/libc/hash/sha1.c index d4d6c8f780f..6d2be6a3394 100644 --- a/lib/libc/hash/sha1.c +++ b/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 <sys/param.h> #include <string.h> -#include "sha1.h" +#include <sha1.h> #define rol(value, bits) (((value) << (bits)) | ((value) >> (32 - (bits)))) |