Switch from GPLv2 to GPLv2+
[fw/altos] / src / math / math.h
index c62f583d561f28e5c4d19bbeef485821a6f5008f..3a279663f26d8db27ba9a462008a43a99d478299 100644 (file)
@@ -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