less warnings

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@908 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
1996-10-27 23:52:16 +00:00
parent 75340efd5a
commit b5852d51fe
17 changed files with 80 additions and 55 deletions

View File

@@ -48,7 +48,7 @@ RCSID("$Id$");
#include <sha.h>
int
md4_tests ()
md4_tests (void)
{
struct test {
char *str;
@@ -90,7 +90,7 @@ md4_tests ()
}
int
md5_tests ()
md5_tests (void)
{
struct test {
char *str;
@@ -124,7 +124,7 @@ md5_tests ()
}
int
sha_tests ()
sha_tests (void)
{
struct test {
char *str;
@@ -158,7 +158,7 @@ sha_tests ()
}
int
main ()
main (void)
{
return md4_tests() + md5_tests() + sha_tests();
}