1
0
mirror of https://git.savannah.gnu.org/git/gnulib.git synced 2025-09-11 11:50:52 +03:00

Use spaces for indentation, not tabs.

This commit is contained in:
Bruno Haible
2009-12-10 20:28:30 +01:00
parent 039ae97b8a
commit 441aa3044f
1202 changed files with 55784 additions and 55721 deletions

View File

@@ -20,15 +20,15 @@
#include <time.h>
#define ASSERT(expr) \
do \
{ \
if (!(expr)) \
{ \
do \
{ \
if (!(expr)) \
{ \
fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \
fflush (stderr); \
abort (); \
} \
} \
fflush (stderr); \
abort (); \
} \
} \
while (0)
int
@@ -48,7 +48,7 @@ main ()
ASSERT (random_r (&rand_state, &r) == 0);
ASSERT (0 <= r);
if (RAND_MAX / 2 < r)
++n_big;
++n_big;
}
/* Fail if none of the numbers were larger than RAND_MAX / 2. */