mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-29 22:40:34 +02:00
add missing SCM_DEPRECATED annotation
* libguile/deprecated.h: Use SCM_DEPRECATED instead of SCM_API for the asinh, acosh, atanh, and atan2 wrappers.
This commit is contained in:
parent
d147fe2e68
commit
b5070556c5
1 changed files with 4 additions and 4 deletions
|
@ -395,10 +395,10 @@ SCM_DEPRECATED double scm_round (double x);
|
|||
SCM_DEPRECATED SCM scm_sys_expt (SCM x, SCM y);
|
||||
|
||||
/* if your platform doesn't have asinh et al */
|
||||
SCM_API double scm_asinh (double x);
|
||||
SCM_API double scm_acosh (double x);
|
||||
SCM_API double scm_atanh (double x);
|
||||
SCM_API SCM scm_sys_atan2 (SCM z1, SCM z2);
|
||||
SCM_DEPRECATED double scm_asinh (double x);
|
||||
SCM_DEPRECATED double scm_acosh (double x);
|
||||
SCM_DEPRECATED double scm_atanh (double x);
|
||||
SCM_DEPRECATED SCM scm_sys_atan2 (SCM z1, SCM z2);
|
||||
|
||||
/* Deprecated because we don't want people to access the internal
|
||||
representation of strings directly.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue