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/dh/dhtest.c | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) (limited to 'crypto/dh') diff --git a/crypto/dh/dhtest.c b/crypto/dh/dhtest.c index f4c2fd9cea..7452afbb5e 100644 --- a/crypto/dh/dhtest.c +++ b/crypto/dh/dhtest.c @@ -77,13 +77,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 cb(int p, int n, BN_GENCB *arg); +static int cb(int p, int n, BN_GENCB *arg); static const char rnd_seed[] = "string to make the random number generator think it has entropy"; @@ -210,7 +204,7 @@ err: return(ret); } -static int MS_CALLBACK cb(int p, int n, BN_GENCB *arg) +static int cb(int p, int n, BN_GENCB *arg) { char c='*'; -- cgit v1.2.3