Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
sed -i -e 's/\t/ /g' *.[ch] Please people, stop using tabs in your source
[simgrid.git] / win32_test_app / include / TDefs.h
index bd7a338..4b00aaa 100644 (file)
@@ -31,9 +31,9 @@ typedef int ssize_t;
 #endif                          /* #ifndef false */
 
 /* Asserts that a condition is true.*/
-#define ASSERT(c)                                              assert(c)
+#define ASSERT(c)            assert(c)
 /* Asserts that a pointer is not NULL.*/
-#define ASSERT_NOT_NULL(p)                             assert(NULL != (p))
+#define ASSERT_NOT_NULL(p)        assert(NULL != (p))
 
 /* Error number type (int) */
 #ifndef __ERRNO_TYPE_DEFINED