Commit b83e61cc authored by Emmanuel Bertin's avatar Emmanuel Bertin
Browse files

Replaced a second missing F in HAVE_SINCOSF.

parent 7aeae9ec
...@@ -4452,7 +4452,7 @@ INPUT Position, ...@@ -4452,7 +4452,7 @@ INPUT Position,
OUTPUT -. OUTPUT -.
NOTES -. NOTES -.
AUTHOR E. Bertin (IAP) AUTHOR E. Bertin (IAP)
VERSION 07/09/2009 VERSION 25/07/2011
***/ ***/
void make_kernel(float pos, float *kernel, interpenum interptype) void make_kernel(float pos, float *kernel, interpenum interptype)
{ {
...@@ -4555,7 +4555,7 @@ void make_kernel(float pos, float *kernel, interpenum interptype) ...@@ -4555,7 +4555,7 @@ void make_kernel(float pos, float *kernel, interpenum interptype)
else else
{ {
x = -PI/4.0*(pos+3.0); x = -PI/4.0*(pos+3.0);
#ifdef HAVE_SINCOS #ifdef HAVE_SINCOSF
sincosf(x, &sinx1, &cosx1); sincosf(x, &sinx1, &cosx1);
#else #else
sinx1 = sinf(x); sinx1 = sinf(x);
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment