mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-24 18:41:57 +00:00
11 lines
200 B
C
11 lines
200 B
C
|
#ifndef __FAST_ACOSF_H__
|
||
|
#define __FAST_ACOSF_H__
|
||
|
|
||
|
extern void init_fast_acosf(void);
|
||
|
extern float fast_acosf(float x);
|
||
|
extern void destroy_fast_acosf(void);
|
||
|
extern void compute_table(void);
|
||
|
|
||
|
#endif
|
||
|
|