diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2010-04-09 19:19:56 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2010-04-09 19:19:56 +0000 |
commit | cee3ba78ec36b5af8839176ca91d63d68f6cb117 (patch) | |
tree | 9ec6f6109238f712b530734c3da0af22a9f1d0e9 /modules | |
parent | 797bbc9ab2e3b5e524a0f6185a84cede634ab203 (diff) |
added aliases for clog~ and cexp~, which are from cmath~.c
svn path=/trunk/externals/creb/; revision=13415
Diffstat (limited to 'modules')
-rw-r--r-- | modules/cexp~.c | 6 | ||||
-rw-r--r-- | modules/clog~.c | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/modules/cexp~.c b/modules/cexp~.c new file mode 100644 index 0000000..d93a316 --- /dev/null +++ b/modules/cexp~.c @@ -0,0 +1,6 @@ +#include "cmath~.c" + +void cexp_tilde_setup(void) +{ + cmath_tilde_setup(); +} diff --git a/modules/clog~.c b/modules/clog~.c new file mode 100644 index 0000000..84e935b --- /dev/null +++ b/modules/clog~.c @@ -0,0 +1,6 @@ +#include "cmath~.c" + +void clog_tilde_setup(void) +{ + cmath_tilde_setup(); +} |