]> mj.ucw.cz Git - libucw.git/blob - lib/math.h
hashtables: fixed combination of HASH_GIVE_ALLOC and HASH_TABLE_ALLOC
[libucw.git] / lib / math.h
1 /*
2  *      UCW Library -- Stub for including math.h, avoiding name collisions
3  *
4  *      (c) 2003 Martin Mares <mj@ucw.cz>
5  *
6  *      This software may be freely distributed and used according to the terms
7  *      of the GNU Lesser General Public License.
8  */
9
10 #undef log
11 #define log libm_log
12 #define exception math_exception
13 #include <math.h>
14 #undef log
15 #define log log_msg
16 #undef exception
17
18 #ifdef CONFIG_LINUX
19 float logf(float);
20 #endif