add rintf wrapper to libnotimpl
authorNicolas Thill <nico@openwrt.org>
Thu, 20 Oct 2005 08:08:06 +0000 (08:08 +0000)
committerNicolas Thill <nico@openwrt.org>
Thu, 20 Oct 2005 08:08:06 +0000 (08:08 +0000)
SVN-Revision: 2190

openwrt/toolchain/libnotimpl/files/math.c

index cc8a661ac55e5471e7d64105bda73e3321cbc54d..8934197d8dcb7bd9d1495dfd33919b486e94f0ab 100644 (file)
@@ -1,16 +1,16 @@
 /* vi: set sw=4 ts=4: */
 
+#include "math.h"
+
 /* cosf for uClibc
  *
  * wrapper for cos(x)
  */
 
-#include "math.h"
-
 #ifdef __STDC__
-       float cosf(float x)             /* wrapper cos */
+       float cosf(float x)
 #else
-       float cosf(x)                   /* wrapper cos */
+       float cosf(x)
        float x;
 #endif
 {
  * wrapper for sin(x)
  */
 
-#include "math.h"
+#ifdef __STDC__
+       float sinf(float x)
+#else
+       float sinf(x)
+       float x;
+#endif
+{
+       return (float) sin( (double)x );
+}
+
+/* rintf for uClibc
+ *
+ * wrapper for rint(x)
+ */
 
 #ifdef __STDC__
-       float sinf(float x)             /* wrapper sin */
+       float rintf(float x)
 #else
-       float sinf(x)                   /* wrapper sin */
+       float rintf(x)
        float x;
 #endif
 {