Align libgc vcxproj with makefile.
[mono.git] / mono / utils / mono-math.c
index f75064ba3c17b6fc02bb5a0a958bdd1d835404b0..7672b0cca9b2bd0daeee62160a8425a33fed6c78 100644 (file)
@@ -1,8 +1,14 @@
+/**
+ * \file
+ */
 
 #include "mono-math.h"
 
 #ifndef HAVE_SIGNBIT
 
+/**
+ * mono_signbit_float:
+ */
 int
 mono_signbit_float (float x)
 {
@@ -13,6 +19,9 @@ mono_signbit_float (float x)
        return u.i < 0;
 }
 
+/**
+ * mono_signbit_double:
+ */
 int
 mono_signbit_double (double x)
 {