From 6d23cf97443bfedf755341b4f2d0d7fce254e020 Mon Sep 17 00:00:00 2001 From: Rich Salz Date: Mon, 12 Jan 2015 17:29:26 -0500 Subject: RT3548: Remove unsupported platforms This last one for this ticket. Removes WIN16. So long, MS_CALLBACK and MS_FAR. We won't miss you. Reviewed-by: Richard Levitte --- crypto/dsa/dsatest.c | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) (limited to 'crypto/dsa') diff --git a/crypto/dsa/dsatest.c b/crypto/dsa/dsatest.c index 152205f1c0..2dac421970 100644 --- a/crypto/dsa/dsatest.c +++ b/crypto/dsa/dsatest.c @@ -79,13 +79,7 @@ int main(int argc, char *argv[]) #else #include -#ifdef OPENSSL_SYS_WIN16 -#define MS_CALLBACK _far _loadds -#else -#define MS_CALLBACK -#endif - -static int MS_CALLBACK dsa_cb(int p, int n, BN_GENCB *arg); +static int dsa_cb(int p, int n, BN_GENCB *arg); /* seed, out_p, out_q, out_g are taken from the updated Appendix 5 to * FIPS PUB 186 and also appear in Appendix 5 to FIPS PIB 186-1 */ @@ -235,7 +229,7 @@ end: return(0); } -static int MS_CALLBACK dsa_cb(int p, int n, BN_GENCB *arg) +static int dsa_cb(int p, int n, BN_GENCB *arg) { char c='*'; static int ok=0,num=0; -- cgit v1.2.3