Cleanup programs further

removed casting of main args to void
diff --git a/programs/hash/hello.c b/programs/hash/hello.c
index 384ade1..c774110 100644
--- a/programs/hash/hello.c
+++ b/programs/hash/hello.c
@@ -38,24 +38,18 @@
 #endif
 
 #if !defined(POLARSSL_MD5_C)
-int main( int argc, char *argv[] )
+int main( void )
 {
-    ((void) argc);
-    ((void) argv);
-
     polarssl_printf("POLARSSL_MD5_C not defined.\n");
     return( 0 );
 }
 #else
-int main( int argc, char *argv[] )
+int main( void )
 {
     int i;
     unsigned char digest[16];
     char str[] = "Hello, world!";
 
-    ((void) argc);
-    ((void) argv);
-
     polarssl_printf( "\n  MD5('%s') = ", str );
 
     md5( (unsigned char *) str, 13, digest );