Fixed machine-dependant defines
This commit is contained in:
parent
b6590ab8d1
commit
70ee3dc406
|
@ -50,13 +50,13 @@ extern double sinh(), tanh(), cosh();
|
||||||
#define POLYNOM12(x, a) (POLYNOM11((x),(a)+1)*(x)+(a)[0])
|
#define POLYNOM12(x, a) (POLYNOM11((x),(a)+1)*(x)+(a)[0])
|
||||||
#define POLYNOM13(x, a) (POLYNOM12((x),(a)+1)*(x)+(a)[0])
|
#define POLYNOM13(x, a) (POLYNOM12((x),(a)+1)*(x)+(a)[0])
|
||||||
|
|
||||||
#ifdef vax
|
#ifdef __vax
|
||||||
#define M_MAX_D 1.701411834604692293e+38
|
#define M_MAX_D 1.701411834604692293e+38
|
||||||
#define M_MIN_D 2.938735877055718770e-39
|
#define M_MIN_D 2.938735877055718770e-39
|
||||||
#define M_DEXPLEN 8
|
#define M_DEXPLEN 8
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef pdp
|
#ifdef __pdp
|
||||||
#define M_MAX_D 1.701411834604692293e+38
|
#define M_MAX_D 1.701411834604692293e+38
|
||||||
#define M_MIN_D 2.938735877055718770e-39
|
#define M_MIN_D 2.938735877055718770e-39
|
||||||
#define M_DEXPLEN 8
|
#define M_DEXPLEN 8
|
||||||
|
|
|
@ -4,10 +4,10 @@
|
||||||
* See the copyright notice in the ACK home directory, in the file "Copyright".
|
* See the copyright notice in the ACK home directory, in the file "Copyright".
|
||||||
*/
|
*/
|
||||||
#define BUFSIZ 1024
|
#define BUFSIZ 1024
|
||||||
#ifdef vax
|
#ifdef __vax
|
||||||
#define _NBF 8
|
#define _NBF 8
|
||||||
#endif
|
#endif
|
||||||
#ifdef mc68020
|
#ifdef __mc68020
|
||||||
#define _NBF 8
|
#define _NBF 8
|
||||||
#endif
|
#endif
|
||||||
#ifndef _NBF
|
#ifndef _NBF
|
||||||
|
|
Loading…
Reference in a new issue