diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-06-11 23:42:13 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-06-11 23:42:13 +0000 |
commit | b7e43e8440a0d47510d40dd5d9440dccf52a05f2 (patch) | |
tree | 20886296c48f50f9e7f28003e17761fd8acd14e0 /bin/md5/md5.c | |
parent | a760a3046bfab4c3721cea25480d9f998d1cf0e8 (diff) |
ansification, art ok
Diffstat (limited to 'bin/md5/md5.c')
-rw-r--r-- | bin/md5/md5.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bin/md5/md5.c b/bin/md5/md5.c index 1f449ab4864..cbb6051ed84 100644 --- a/bin/md5/md5.c +++ b/bin/md5/md5.c @@ -1,4 +1,4 @@ -/* $OpenBSD: md5.c,v 1.22 2003/06/03 01:52:39 millert Exp $ */ +/* $OpenBSD: md5.c,v 1.23 2003/06/11 23:42:12 deraadt Exp $ */ /* * Copyright (c) 2001,2003 Todd C. Miller <Todd.Miller@courtesan.com> @@ -47,6 +47,7 @@ struct hash_functions { char * (*file)(); char * (*data)(); }; + struct hash_functions functions[] = { { "MD5", @@ -386,7 +387,7 @@ digest_test(struct hash_functions *hf) } static void -usage() +usage(void) { fprintf(stderr, "usage: %s [-p | -t | -x | -c [ checksum_file ... ]", __progname); |