aboutsummaryrefslogtreecommitdiffstats
path: root/trionan.c
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2001-08-21 10:56:31 +0000
committerDaniel Veillard <veillard@src.gnome.org>2001-08-21 10:56:31 +0000
commitcda969218bdda1d3dd8d3c4417f3dc100d076024 (patch)
treec680cfee774a45ba0fae3c9a7347c7534d9b540c /trionan.c
parent450296070e14629141738fbb34b9a0ad13af1f02 (diff)
downloadandroid_external_libxml2-cda969218bdda1d3dd8d3c4417f3dc100d076024.tar.gz
android_external_libxml2-cda969218bdda1d3dd8d3c4417f3dc100d076024.tar.bz2
android_external_libxml2-cda969218bdda1d3dd8d3c4417f3dc100d076024.zip
more work on the XML catalog support. small cleanup seems using list as a
* Makefile.am catalog.c xmlcatalog.c include/libxml/catalog.h: more work on the XML catalog support. * parser.c include/libxml/parser.h: small cleanup seems using list as a public parameter name can give portability troubles * trionan.c trionan.h xpath.c include/libxml/trionan.h include/libxml/xpath.h include/libxml/Makefile.am: removed trionan from the libxml API, added xmlXPathIsInf and xmlXPathIsNaN wrappers Daniel
Diffstat (limited to 'trionan.c')
-rw-r--r--trionan.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/trionan.c b/trionan.c
index d8bd99b2..eae5225a 100644
--- a/trionan.c
+++ b/trionan.c
@@ -200,7 +200,7 @@ trio_is_special_quantity(double number,
/*************************************************************************
* trio_pinf
*/
-double
+TRIO_PUBLIC double
trio_pinf(void)
{
/* Cache the result */
@@ -242,7 +242,7 @@ trio_pinf(void)
/*************************************************************************
* trio_ninf
*/
-double
+TRIO_PUBLIC double
trio_ninf(void)
{
static double result = 0.0;
@@ -261,7 +261,7 @@ trio_ninf(void)
/*************************************************************************
* trio_nan
*/
-double
+TRIO_PUBLIC double
trio_nan(void)
{
/* Cache the result */
@@ -306,7 +306,7 @@ trio_nan(void)
/*************************************************************************
* trio_isnan
*/
-int
+TRIO_PUBLIC int
trio_isnan(volatile double number)
{
#if defined(isnan) || defined(TRIO_COMPILER_SUPPORTS_UNIX95)
@@ -370,7 +370,7 @@ trio_isnan(volatile double number)
/*************************************************************************
* trio_isinf
*/
-int
+TRIO_PUBLIC int
trio_isinf(volatile double number)
{
#if defined(TRIO_COMPILER_DECC)