summaryrefslogtreecommitdiff
path: root/nuttx/include/nuttx/math.h
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-06-27 08:14:07 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-06-27 08:14:07 -0600
commit7755d921a8a04fdd7a335bcc45d78747ead15f2b (patch)
treeb5a55fb0fc9c53a30eebe32038564f392a55766f /nuttx/include/nuttx/math.h
parent466c29f48dfc265e8ce908dd95e593a96560525e (diff)
downloadnuttx-7755d921a8a04fdd7a335bcc45d78747ead15f2b.tar.gz
nuttx-7755d921a8a04fdd7a335bcc45d78747ead15f2b.tar.bz2
nuttx-7755d921a8a04fdd7a335bcc45d78747ead15f2b.zip
Various changes associated with symbol tables. Most from Pelle Windestam
Diffstat (limited to 'nuttx/include/nuttx/math.h')
-rw-r--r--nuttx/include/nuttx/math.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/nuttx/include/nuttx/math.h b/nuttx/include/nuttx/math.h
index c01963cff..d7945ec95 100644
--- a/nuttx/include/nuttx/math.h
+++ b/nuttx/include/nuttx/math.h
@@ -150,6 +150,14 @@ double round (double x);
long double roundl(long double x);
#endif
+float rintf(float x); /* Not implemented */
+#if CONFIG_HAVE_DOUBLE
+double_t rint(double_t x);
+#endif
+#ifdef CONFIG_HAVE_LONG_DOUBLE
+long double rintl(long double x); /* Not implemented */
+#endif
+
float fabsf (float x);
#if CONFIG_HAVE_DOUBLE
double fabs (double x);