diff options
author | Bruno Haible <bruno@clisp.org> | 2009-12-24 21:01:42 +0100 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2009-12-24 21:01:42 +0100 |
commit | 987e5651e8d1c5aa933c9ce88562806af4093702 (patch) | |
tree | 4a7d023ba4f5f6c20bc5a1b68ab678e934afc4b0 /tests/test-fdopendir.c | |
parent | effbadc5cdd5c424f97367d66297e0e2aa057d63 (diff) | |
download | gnulib-987e5651e8d1c5aa933c9ce88562806af4093702.tar.gz |
Refactor common macros used in tests.
Diffstat (limited to 'tests/test-fdopendir.c')
-rw-r--r-- | tests/test-fdopendir.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/tests/test-fdopendir.c b/tests/test-fdopendir.c index f6006d0b8e..943b8d1206 100644 --- a/tests/test-fdopendir.c +++ b/tests/test-fdopendir.c @@ -25,21 +25,9 @@ SIGNATURE_CHECK (fdopendir, DIR *, (int)); #include <errno.h> #include <fcntl.h> -#include <stdio.h> -#include <stdlib.h> #include <unistd.h> -#define ASSERT(expr) \ - do \ - { \ - if (!(expr)) \ - { \ - fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \ - fflush (stderr); \ - abort (); \ - } \ - } \ - while (0) +#include "macros.h" int main (void) |