mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-03-06 12:20:48 -08:00
ext:c-uint-max and ext:c-ulong-max did not have the right bignum value.
This commit is contained in:
parent
7fb94bf9b7
commit
e22e3fd1f9
2 changed files with 4 additions and 2 deletions
|
|
@ -20,6 +20,8 @@ ECL 0.9f
|
|||
reference the variable that it was going to initialize, as in
|
||||
(LAMBDA (&OPTIONAL (FOO (1+ FOO))) ...)
|
||||
|
||||
- ext:c-uint-max and ext:c-ulong-max did not have the right bignum value.
|
||||
|
||||
* Visible changes:
|
||||
|
||||
- Multithreaded ECL now in Windows, either with Microsoft VC++
|
||||
|
|
|
|||
|
|
@ -290,8 +290,8 @@ cl_boot(int argc, char **argv)
|
|||
ECL_SET(@'si::c-int-min', make_integer(INT_MIN));
|
||||
ECL_SET(@'si::c-long-max', make_integer(LONG_MAX));
|
||||
ECL_SET(@'si::c-long-min', make_integer(LONG_MIN));
|
||||
ECL_SET(@'si::c-uint-max', make_integer(UINT_MAX));
|
||||
ECL_SET(@'si::c-ulong-max', make_integer(ULONG_MAX));
|
||||
ECL_SET(@'si::c-uint-max', make_unsigned_integer(UINT_MAX));
|
||||
ECL_SET(@'si::c-ulong-max', make_unsigned_integer(ULONG_MAX));
|
||||
|
||||
init_number();
|
||||
init_unixtime();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue