summaryrefslogtreecommitdiff
path: root/apps/codecs/libspeex/math.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/libspeex/math.h')
-rw-r--r--apps/codecs/libspeex/math.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/apps/codecs/libspeex/math.h b/apps/codecs/libspeex/math.h
deleted file mode 100644
index 5c1781df52..0000000000
--- a/apps/codecs/libspeex/math.h
+++ /dev/null
@@ -1,32 +0,0 @@
1/**************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 *
9 * Copyright (C) 2007 Dan Everton
10 *
11 * All files in this archive are subject to the GNU General Public License.
12 * See the file COPYING in the source tree root for full license agreement.
13 *
14 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
15 * KIND, either express or implied.
16 *
17 ***************************************************************************/
18
19#ifndef MATH_H
20#define MATH_H
21
22float floor(float);
23float exp(float);
24float sqrt(float);
25float fabs(float);
26float log(float);
27float pow(float, float);
28float sin(float);
29float cos(float);
30
31#endif
32