1
0
mirror of https://github.com/signalwire/freeswitch.git synced 2025-04-18 01:28:42 +00:00

Fixed MacOS compile issue with mod_avmd fastmath

This commit is contained in:
Eric des Courtis 2010-05-25 16:29:11 -04:00
parent 99738b6a87
commit 6c8f0d499f

@ -10,6 +10,9 @@
#include <math.h>
#include <unistd.h>
#include "fast_acosf.h"
#include "options.h"
#ifdef FASTMATH
#define SIGN_MASK (0x80000000)
#define DATA_MASK (0x07FFFFF8)
@ -126,5 +129,6 @@ static float float_from_index(uint32_t d)
}
#endif