summaryrefslogtreecommitdiffstats
path: root/newlib/libc/include/math.h
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2003-08-13 17:36:10 +0000
committerJeff Johnston <jjohnstn@redhat.com>2003-08-13 17:36:10 +0000
commit6efbdc7da5cbccd7fa8cae14e6759868ce92bc44 (patch)
tree48b061ba7c8808b28b002e2404f3d46f39edc66a /newlib/libc/include/math.h
parent6763d47b1e380359b108457794f83ed38632f94f (diff)
downloadcygnal-6efbdc7da5cbccd7fa8cae14e6759868ce92bc44.tar.gz
cygnal-6efbdc7da5cbccd7fa8cae14e6759868ce92bc44.tar.bz2
cygnal-6efbdc7da5cbccd7fa8cae14e6759868ce92bc44.zip
2003-08-13 Jeff Johnston <jjohnstn@redhat.com>
* libc/include/math.h: Add prototypes for __signbitf and __signbitd.
Diffstat (limited to 'newlib/libc/include/math.h')
-rw-r--r--newlib/libc/include/math.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/newlib/libc/include/math.h b/newlib/libc/include/math.h
index 1be7511dc..dbbae0048 100644
--- a/newlib/libc/include/math.h
+++ b/newlib/libc/include/math.h
@@ -81,6 +81,8 @@ typedef double double_t;
extern int __fpclassifyf (float x);
extern int __fpclassifyd (double x);
+extern int __signbitf (float x);
+extern int __signbitd (double x);
#define fpclassify(x) \
(__extension__ ({__typeof__(x) __x = (x); \