diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2024-05-21 05:00:49 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2024-05-21 05:00:49 +0000 |
commit | 9299db4d45f255b8fe176a23e4b33db8d85f5508 (patch) | |
tree | 93bb0788559a24bc5c8049b026b4d45a3c324cf9 /bin/md5 | |
parent | 2b420f805f31d3140396e09beb8a7a98056d23af (diff) |
remove prototypes with no matching function and externs with no var
partly checked by millert@
Diffstat (limited to 'bin/md5')
-rw-r--r-- | bin/md5/crc.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/bin/md5/crc.h b/bin/md5/crc.h index 2000c489c9b..65d2c2ed23c 100644 --- a/bin/md5/crc.h +++ b/bin/md5/crc.h @@ -1,4 +1,4 @@ -/* $OpenBSD: crc.h,v 1.4 2019/01/25 00:19:25 millert Exp $ */ +/* $OpenBSD: crc.h,v 1.5 2024/05/21 05:00:47 jsg Exp $ */ /* * Copyright (c) 2004 Todd C. Miller <millert@openbsd.org> @@ -28,4 +28,3 @@ void CKSUM_Init(CKSUM_CTX *); void CKSUM_Update(CKSUM_CTX *, const u_int8_t *, size_t); void CKSUM_Final(CKSUM_CTX *); char *CKSUM_End(CKSUM_CTX *, char *); -char *CKSUM_Data(const u_int8_t *, size_t, char *); |