diff options
author | 2000-10-10 12:17:43 +0000 | |
---|---|---|
committer | 2000-10-10 12:17:43 +0000 | |
commit | 8f5ac5ef412c97a7eb617ca3a57c0189e81f76a1 (patch) | |
tree | 1bce2ed9b738c71645e1c6e95ddf615a35fe7588 /lib/libm/noieee_src/n_acosh.c | |
parent | Don't install ieeefp.h on vax. derradt Ok. (diff) | |
download | wireguard-openbsd-8f5ac5ef412c97a7eb617ca3a57c0189e81f76a1.tar.xz wireguard-openbsd-8f5ac5ef412c97a7eb617ca3a57c0189e81f76a1.zip |
^vax^__vax__
Diffstat (limited to 'lib/libm/noieee_src/n_acosh.c')
-rw-r--r-- | lib/libm/noieee_src/n_acosh.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libm/noieee_src/n_acosh.c b/lib/libm/noieee_src/n_acosh.c index ce909d16ea3..08485f2641f 100644 --- a/lib/libm/noieee_src/n_acosh.c +++ b/lib/libm/noieee_src/n_acosh.c @@ -92,9 +92,9 @@ acosh(x) { double t,big=1.E20; /* big+1==big */ -#if !defined(vax)&&!defined(tahoe) +#if !defined(__vax__)&&!defined(tahoe) if(x!=x) return(x); /* x is NaN */ -#endif /* !defined(vax)&&!defined(tahoe) */ +#endif /* !defined(__vax__)&&!defined(tahoe) */ /* return log1p(x) + log(2) if x is large */ if(x>big) {t=log1p(x)+ln2lo; return(t+ln2hi);} |