From 6b691a5c85ddc4e407e32781841fee5c029506cd Mon Sep 17 00:00:00 2001 From: Ulf Möller Date: Mon, 19 Apr 1999 21:31:43 +0000 Subject: Change functions to ANSI C. --- crypto/cast/c_ecb.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'crypto/cast/c_ecb.c') diff --git a/crypto/cast/c_ecb.c b/crypto/cast/c_ecb.c index e6a3d4332e..a407a6d119 100644 --- a/crypto/cast/c_ecb.c +++ b/crypto/cast/c_ecb.c @@ -62,11 +62,8 @@ char *CAST_version="CAST" OPENSSL_VERSION_PTEXT; -void CAST_ecb_encrypt(in, out, ks, encrypt) -unsigned char *in; -unsigned char *out; -CAST_KEY *ks; -int encrypt; +void CAST_ecb_encrypt(unsigned char *in, unsigned char *out, CAST_KEY *ks, + int encrypt) { CAST_LONG l,d[2]; -- cgit v1.2.3