diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2012-12-05 23:20:27 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2012-12-05 23:20:27 +0000 |
commit | 0275dcbbe75bf604e5d9b03f215e510188a36496 (patch) | |
tree | 5c28b494f1e6a54c80a5317abfe2c32e13cbbdc5 /include/sha1.h | |
parent | 56b74e8e5b53b78f8c539afa3b9581be53b79e06 (diff) |
Remove excessive sys/cdefs.h inclusion
ok guenther millert kettenis
Diffstat (limited to 'include/sha1.h')
-rw-r--r-- | include/sha1.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/sha1.h b/include/sha1.h index 9834cf8706a..f596be65ee2 100644 --- a/include/sha1.h +++ b/include/sha1.h @@ -1,4 +1,4 @@ -/* $OpenBSD: sha1.h,v 1.23 2004/06/22 01:57:30 jfb Exp $ */ +/* $OpenBSD: sha1.h,v 1.24 2012/12/05 23:19:57 deraadt Exp $ */ /* * SHA-1 in C @@ -19,8 +19,6 @@ typedef struct { u_int8_t buffer[SHA1_BLOCK_LENGTH]; } SHA1_CTX; -#include <sys/cdefs.h> - __BEGIN_DECLS void SHA1Init(SHA1_CTX *); void SHA1Pad(SHA1_CTX *); |