summaryrefslogtreecommitdiff
path: root/libguile/numbers.h
diff options
context:
space:
mode:
authorMarius Vollmer <mvo@zagadka.de>2004-08-09 23:32:14 +0000
committerMarius Vollmer <mvo@zagadka.de>2004-08-09 23:32:14 +0000
commit3101f40f7634b0262f1e936dc3df06ab89aacd15 (patch)
tree53c8cd7b792b5d93a62a51e0c3d5f5d231f3150c /libguile/numbers.h
parent565b4a6f318f05d03bcd13828fe37b7178ed9a7c (diff)
downloadguile-3101f40f7634b0262f1e936dc3df06ab89aacd15.tar.gz
(scm_round, scm_truncate): Renamed to scm_c_round and scm_c_truncate;
deprecated versions installed in deprecated.h and deprecated.c. Changed all uses.
Diffstat (limited to 'libguile/numbers.h')
-rw-r--r--libguile/numbers.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/numbers.h b/libguile/numbers.h
index dc1f4c2b8..4e39a2cc1 100644
--- a/libguile/numbers.h
+++ b/libguile/numbers.h
@@ -241,8 +241,8 @@ SCM_API SCM scm_ceiling (SCM x);
SCM_API double scm_asinh (double x);
SCM_API double scm_acosh (double x);
SCM_API double scm_atanh (double x);
-SCM_API double scm_truncate (double x);
-SCM_API double scm_round (double x);
+SCM_API double scm_c_truncate (double x);
+SCM_API double scm_c_round (double x);
SCM_API SCM scm_truncate_number (SCM x);
SCM_API SCM scm_round_number (SCM x);
SCM_API SCM scm_sys_expt (SCM z1, SCM z2);