Release calc version 2.11.10

This commit is contained in:
Landon Curt Noll
2004-09-01 14:45:06 -07:00
parent 42b089a87c
commit a6a37f9cad
64 changed files with 2692 additions and 1301 deletions

View File

@@ -8,8 +8,8 @@
/* must we always align 32 bit accesses? */
/* forced to not require 32 bit alignment */
#undef MUST_ALIGN32
/* forced to align 32 bit values */
#define MUST_ALIGN32
#endif /* !__MUST_ALIGN32_H__ */

View File

@@ -29,7 +29,7 @@
/* the default pager to use */
#if !defined(DEFAULTCALCPAGER)
#define DEFAULTCALCPAGER ""
#define DEFAULTCALCPAGER "less.exe"
#endif /* DEFAULTCALCPAGER */
/* where the echo command is located */

View File

@@ -21,11 +21,14 @@ typedef short SB16; /* signed 16 bits */
typedef unsigned long USB32; /* unsigned 32 bits */
typedef long SB32; /* signed 32 bits */
#undef HAVE_B64 /* we have no USB64 and no SB64 types */
#undef HAVE_B64
#define HAVE_B64 /* have USB64 and SB64 types */
typedef unsigned long long USB64; /* unsigned 64 bits */
typedef long long SB64; /* signed 64 bits */
/* no 64 bit constants */
#define U(x) no 33 to 64 bit constants - do not use this macro!
#define L(x) no 33 to 64 bit constants - do not use this macro!
/* how to form 64 bit constants */
#define U(x) x ## ULL
#define L(x) x ## LL
#endif /* !__LONGBITS_H__ */

View File

@@ -1,16 +0,0 @@
/*
* DO NOT EDIT -- generated by the Makefile
*/
#if !defined(__LONGLONG_H__)
#define __LONGLONG_H__
/* do we have/want to use a long long type? */
#undef HAVE_LONGLONG
#define LONGLONG_BITS 0 /* no */
#undef L64_FORMAT
#endif /* !__LONGLONG_H__ */