summaryrefslogtreecommitdiffstats
path: root/lib/libmd/mdXhl.c
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>1995-02-24 08:51:34 +0000
committerphk <phk@FreeBSD.org>1995-02-24 08:51:34 +0000
commitcbb4f636288c8b47bd539235ad8dad3ff401cb2b (patch)
tree1da5c69ee18b64e7a3a9454f9470ff1c8de85104 /lib/libmd/mdXhl.c
parent5ca4449181894449d401ac7032b982b4b7a66778 (diff)
downloadFreeBSD-src-cbb4f636288c8b47bd539235ad8dad3ff401cb2b.zip
FreeBSD-src-cbb4f636288c8b47bd539235ad8dad3ff401cb2b.tar.gz
Clean a bunch of -Wall warnings.
Diffstat (limited to 'lib/libmd/mdXhl.c')
-rw-r--r--lib/libmd/mdXhl.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libmd/mdXhl.c b/lib/libmd/mdXhl.c
index dafaec5..76152ca 100644
--- a/lib/libmd/mdXhl.c
+++ b/lib/libmd/mdXhl.c
@@ -1,5 +1,4 @@
/* mdXhl.c
-/*
* ----------------------------------------------------------------------------
* "THE BEER-WARE LICENSE" (Revision 42):
* <phk@login.dkuug.dk> wrote this file. As long as you retain this notice you
@@ -16,6 +15,9 @@
#include <errno.h>
#include "mdX.h"
#include <sys/file.h>
+#include <sys/types.h>
+#include <sys/uio.h>
+#include <unistd.h>
char *
MDXEnd(MDX_CTX *ctx)
@@ -38,9 +40,8 @@ MDXEnd(MDX_CTX *ctx)
char *
MDXFile (char *filename)
{
- unsigned char digest[16],buffer[BUFSIZ];
+ unsigned char buffer[BUFSIZ];
MDX_CTX ctx;
- char *p;
int f,i,j;
MDXInit(&ctx);
@@ -59,7 +60,6 @@ MDXFile (char *filename)
char *
MDXData (const unsigned char *data, unsigned int len)
{
- unsigned char digest[16];
MDX_CTX ctx;
MDXInit(&ctx);
OpenPOWER on IntegriCloud