X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mono%2Futils%2Fmono-math.h;h=438964ba64d8dc62b01b64559eda22ea23be6f67;hb=b9e7bcabe48cd0d9f282a2eebe6ab9a8a010d9b0;hp=90d14b6c611f9888839b22a5ca17db75b4bb6a99;hpb=04d1b4116331e3813b8f75304f714a5d61ba1214;p=mono.git diff --git a/mono/utils/mono-math.h b/mono/utils/mono-math.h index 90d14b6c611..438964ba64d 100644 --- a/mono/utils/mono-math.h +++ b/mono/utils/mono-math.h @@ -1,18 +1,22 @@ +/** + * \file + */ #ifndef __MONO_SIGNBIT_H__ #define __MONO_SIGNBIT_H__ #include +#include #ifdef HAVE_SIGNBIT #define mono_signbit signbit #else #define mono_signbit(x) (sizeof (x) == sizeof (float) ? mono_signbit_float (x) : mono_signbit_double (x)) -int +MONO_API int mono_signbit_double (double x); -int +MONO_API int mono_signbit_float (float x); #endif