Redefine the default boolean type to gmx_bool.
[alexxy/gromacs.git] / src / gmxlib / sparsematrix.c
index bb17a5dd857c84762297abeb5cb0cb432200ef79..41c78a528d9eb139fc72fa515dd0d4a0d375095e 100644 (file)
@@ -129,7 +129,7 @@ gmx_sparsematrix_value(gmx_sparsematrix_t *    A,
                        int                     row, 
                        int                     col)
 {
-    bool found  = FALSE;
+    gmx_bool found  = FALSE;
     int  i;
     real value;
     
@@ -159,7 +159,7 @@ gmx_sparsematrix_increment_value(gmx_sparsematrix_t *    A,
                                  int                     col,
                                  real                    difference)
 {
-    bool found  = FALSE;
+    gmx_bool found  = FALSE;
     int i;
     
     assert(row<A->nrow);