Fix ghastly DES declarations, and all consequential warnings.
[openssl.git] / crypto / des / pcbc_enc.c
index 4513207d908f294596fc502947ca3161b32a2466..850717cc5718fc8266b6e13b449f955bdfa34775 100644 (file)
 #include "des_locl.h"
 
 void des_pcbc_encrypt(input, output, length, schedule, ivec, enc)
-des_cblock (*input);
-des_cblock (*output);
+const unsigned char *input;
+unsigned char *output;
 long length;
 des_key_schedule schedule;
-des_cblock (*ivec);
+des_cblock ivec;
 int enc;
        {
        register DES_LONG sin0,sin1,xor0,xor1,tout0,tout1;