1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 11:40:18 +02:00

*** empty log message ***

This commit is contained in:
Rob Browning 2003-04-16 19:45:11 +00:00
parent 7310ad0ccf
commit 3b8b889c93
2 changed files with 14 additions and 0 deletions

View file

@ -1,3 +1,16 @@
2003-04-16 Rob Browning <rlb@defaultvalue.org>
* numbers.c (PTRDIFF_MIN): use SCM_CHAR_BIT.
* socket.c: use SCM_CHAR_BIT.
* random.c (scm_c_random_bignum): use SCM_CHAR_BIT.
* num2integral.i.c (NUM2INTEGRAL): use SCM_CHAR_BIT.
* gc_os_dep.c (mach_type_known): added patch for UnixWare and
OpenUNIX support. Thanks to Boyd Gerber.
2003-04-16 Mikael Djurfeldt <mdj@kvast.blakulla.net>
* feature.c (scm_init_feature): Always add threads feature.

View file

@ -214,6 +214,7 @@ SCM_API double scm_atanh (double x);
SCM_API double scm_truncate (double x);
SCM_API double scm_round (double x);
SCM_API SCM scm_sys_expt (SCM z1, SCM z2);
SCM_API SCM scm_sqrt (SCM x);
SCM_API SCM scm_sys_atan2 (SCM z1, SCM z2);
SCM_API SCM scm_make_rectangular (SCM z1, SCM z2);
SCM_API SCM scm_make_polar (SCM z1, SCM z2);