mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-17 06:42:18 -08:00
Fix ecl_to_{u,}short.
This commit is contained in:
parent
9a0402d616
commit
fe55f81cbe
1 changed files with 2 additions and 2 deletions
|
|
@ -987,9 +987,9 @@ extern ECL_API ecl_int16_t ecl_to_int16_t(cl_object o);
|
|||
# define ecl_make_int16_t(i) MAKE_FIXNUM(i)
|
||||
#endif /* ecl_uint16_t */
|
||||
#define ecl_make_short(n) MAKE_FIXNUM(n)
|
||||
#define ecl_to_short(x) (short)fixint(n)
|
||||
#define ecl_to_short(n) (short)fixint(n)
|
||||
#define ecl_make_ushort(n) MAKE_FIXNUM(n)
|
||||
#define ecl_to_ushort(x) (unsigned short)fixnnint(n)
|
||||
#define ecl_to_ushort(n) (unsigned short)fixnnint(n)
|
||||
#ifdef ecl_uint32_t
|
||||
# if FIXNUM_BITS == 32
|
||||
# define ecl_to_uint32_t fixnnint
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue