*
* @since 0.11.0
*/
-#define ck_assert_float_nonnan(X) _ck_assert_floating_nonnan(X, float, "l")
+#define ck_assert_float_nonnan(X) _ck_assert_floating_nonnan(X, float, "")
/**
* Check two double precision floating point numbers to determine if X == Y
*
* @since 0.11.0
*/
-#define ck_assert_double_eq(X, Y) _ck_assert_floating(X, ==, Y, double, "l")
+#define ck_assert_double_eq(X, Y) _ck_assert_floating(X, ==, Y, double, "")
/**
* Check two double precision floating point numbers to determine if X != Y
*
*
* @since 0.11.0
*/
-#define ck_assert_double_ne(X, Y) _ck_assert_floating(X, !=, Y, double, "l")
+#define ck_assert_double_ne(X, Y) _ck_assert_floating(X, !=, Y, double, "")
/**
* Check two double precision floating point numbers to determine if X < Y
*
*
* @since 0.11.0
*/
-#define ck_assert_double_lt(X, Y) _ck_assert_floating(X, <, Y, double, "l")
+#define ck_assert_double_lt(X, Y) _ck_assert_floating(X, <, Y, double, "")
/**
* Check two double precision floating point numbers to determine if X <= Y
*
*
* @since 0.11.0
*/
-#define ck_assert_double_le(X, Y) _ck_assert_floating(X, <=, Y, double, "l")
+#define ck_assert_double_le(X, Y) _ck_assert_floating(X, <=, Y, double, "")
/**
* Check two double precision floating point numbers to determine if X > Y
*
*
* @since 0.11.0
*/
-#define ck_assert_double_gt(X, Y) _ck_assert_floating(X, >, Y, double, "l")
+#define ck_assert_double_gt(X, Y) _ck_assert_floating(X, >, Y, double, "")
/**
* Check two double precision floating point numbers to determine if X >= Y
*
*
* @since 0.11.0
*/
-#define ck_assert_double_ge(X, Y) _ck_assert_floating(X, >=, Y, double, "l")
+#define ck_assert_double_ge(X, Y) _ck_assert_floating(X, >=, Y, double, "")
/**
* Check two double precision floating point numbers to determine if X≈Y
*
* @since 0.11.0
*/
-#define ck_assert_double_eq_tol(X, Y, T) _ck_assert_floating_absdiff_op_tol(X, Y, <, T, double, "l")
+#define ck_assert_double_eq_tol(X, Y, T) _ck_assert_floating_absdiff_op_tol(X, Y, <, T, double, "")
/**
* Check two double precision floating point numbers to determine if not X≈Y
*
* @since 0.11.0
*/
-#define ck_assert_double_ne_tol(X, Y, T) _ck_assert_floating_absdiff_op_tol(X, Y, >=, T, double, "l")
+#define ck_assert_double_ne_tol(X, Y, T) _ck_assert_floating_absdiff_op_tol(X, Y, >=, T, double, "")
/**
* Check two double precision floating point numbers to determine if X>≈Y
*
* @since 0.11.0
*/
-#define ck_assert_double_ge_tol(X, Y, T) _ck_assert_floating_op_tol(X, >, Y, T, -1, double, "l")
+#define ck_assert_double_ge_tol(X, Y, T) _ck_assert_floating_op_tol(X, >, Y, T, -1, double, "")
/**
* Check two double precision floating point numbers to determine if X<≈Y
*
* @since 0.11.0
*/
-#define ck_assert_double_le_tol(X, Y, T) _ck_assert_floating_op_tol(X, <, Y, T, 1, double, "l")
+#define ck_assert_double_le_tol(X, Y, T) _ck_assert_floating_op_tol(X, <, Y, T, 1, double, "")
/**
* Check that a double precision floating point number is finite; i.e. is
*
* @since 0.11.0
*/
-#define ck_assert_double_finite(X) _ck_assert_floating_finite(X, double, "l")
+#define ck_assert_double_finite(X) _ck_assert_floating_finite(X, double, "")
/**
* Check that a double precision floating point number is infinite,
*
* @since 0.11.0
*/
-#define ck_assert_double_infinite(X) _ck_assert_floating_infinite(X, double, "l")
+#define ck_assert_double_infinite(X) _ck_assert_floating_infinite(X, double, "")
/**
* Check that a double precision floating point number
*
* @since 0.11.0
*/
-#define ck_assert_double_nan(X) _ck_assert_floating_nan(X, double, "l")
+#define ck_assert_double_nan(X) _ck_assert_floating_nan(X, double, "")
/**
* Check that a double precision floating point number is
*
* @since 0.11.0
*/
-#define ck_assert_double_nonnan(X) _ck_assert_floating_nonnan(X, double, "l")
+#define ck_assert_double_nonnan(X) _ck_assert_floating_nonnan(X, double, "")
/**
* Check two double precision floating point numbers to determine if X == Y