2012-09-10 Niels Möller <nisse@lysator.liu.se>
+ * desdata.c: Don't declare printf, include <stdio.h> instead. Also
+ deleted casts of printf return value.
+
From Tim Rühsen:
* examples/nettle-benchmark.c (die): Use PRINTF_STYLE attribute.
* pgp-encode.c (pgp_put_rsa_sha1_signature): Deleted unused variable.
# include "config.h"
#endif
+#include <stdio.h>
+
#include "desinfo.h"
#include "desCode.h"
7, 5, 3, 1, 6, 4, 2, 0,
};
-int printf(const char *, ...);
-
int
main(int argc UNUSED, char **argv UNUSED)
{
*/
case 'p':
- (void)printf(
+ printf(
"/* automagically produced - do not fuss with this information */\n\n");
/* store parity information */
/* print it out */
for ( i = 0; i < 256; i++ ) {
- (void)printf("%d,", b[i]);
+ printf("%d,", b[i]);
if ( (i & 31) == 31 )
- (void)printf("\n");
+ printf("\n");
}
break;
*/
case 'r':
- (void)printf("/* automagically made - do not fuss with this */\n\n");
+ printf("/* automagically made - do not fuss with this */\n\n");
/* KL specifies the initial key bit positions */
for (i = 0; i < 56; i++)
m = ksr[KC[korder[j]] - 1];
m = (m / 8) * 7 + (m % 8) - 1;
m = 55 - m;
- (void)printf(" %2ld,", (long) m);
+ printf(" %2ld,", (long) m);
if ((j % 12) == 11)
- (void)printf("\n");
+ printf("\n");
}
- (void)printf("\n");
+ printf("\n");
}
break;
*/
case 'k':
- (void)printf("/* automagically made - do not fuss with this */\n\n");
+ printf("/* automagically made - do not fuss with this */\n\n");
for ( i = 0; i <= 7 ; i++ ) {
s = sorder[i];
/* rotate right (alg keeps everything rotated by 1) */
ROR(m, 1, 31);
/* print it out */
- (void)printf(" 0x%08lx,", (long) m);
+ printf(" 0x%08lx,", (long) m);
if ( ( d & 3 ) == 3 )
- (void)printf("\n");
+ printf("\n");
}
- (void)printf("\n");
+ printf("\n");
}
break;