diff options
author | Rich Salz <rsalz@akamai.com> | 2014-08-08 16:46:14 -0400 |
---|---|---|
committer | Rich Salz <rsalz@akamai.com> | 2014-08-08 16:54:14 -0400 |
commit | a90081576c94f9f54de1755188a00ccc1760549a (patch) | |
tree | dffbe450e39181c15a9ef5422cbed5916f8af161 /crypto/ui | |
parent | 0989790b87efcfd40ae6770f11af28a005df28ac (diff) | |
download | openssl-new-a90081576c94f9f54de1755188a00ccc1760549a.tar.gz |
Remove DJGPP (and therefore WATT32) #ifdef's.
DJGPP is no longer a supported platform. Remove all #ifdef, etc.,
cases that refer to it. DJGPP also #define'd WATT32, so that
is now removed as well.
Diffstat (limited to 'crypto/ui')
-rw-r--r-- | crypto/ui/ui_openssl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/ui/ui_openssl.c b/crypto/ui/ui_openssl.c index a38c7581e6..1b09b916bb 100644 --- a/crypto/ui/ui_openssl.c +++ b/crypto/ui/ui_openssl.c @@ -296,7 +296,7 @@ static long tty_orig[3], tty_new[3]; /* XXX Is there any guarantee that this w static long status; static unsigned short channel = 0; #else -#if !defined(OPENSSL_SYS_MSDOS) || defined(__DJGPP__) +#if !defined(OPENSSL_SYS_MSDOS) static TTY_STRUCT tty_orig,tty_new; #endif #endif |