X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=src%2Fmath%2Fmath.h;h=3a279663f26d8db27ba9a462008a43a99d478299;hb=1085ec5d57e0ed5d132f2bbdac1a0b6a32c0ab4a;hp=c62f583d561f28e5c4d19bbeef485821a6f5008f;hpb=b83876718b1a535ee04ca0351ad57814454ec646;p=fw%2Faltos diff --git a/src/math/math.h b/src/math/math.h index c62f583d..3a279663 100644 --- a/src/math/math.h +++ b/src/math/math.h @@ -3,7 +3,8 @@ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; version 2 of the License. + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of @@ -22,6 +23,8 @@ float acosf(float x); float cosf(float x); +float sinf(float x); + float sqrtf(float x); float fabsf(float x); @@ -32,4 +35,6 @@ float scalbnf(float x, int n); float copysignf(float x, float y); +float logf(float x); + #endif