mirror of
https://github.com/lcn2/calc.git
synced 2025-08-19 01:13:27 +03:00
Release calc version 2.11.10
This commit is contained in:
@@ -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__ */
|
||||
|
@@ -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 */
|
||||
|
@@ -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__ */
|
||||
|
@@ -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__ */
|
Reference in New Issue
Block a user