diff options
author | Ran Benita <ran234@gmail.com> | 2012-03-04 18:38:54 +0200 |
---|---|---|
committer | David Herrmann <dh.herrmann@googlemail.com> | 2012-03-20 19:00:16 +0100 |
commit | d8cf293c94dabeb94370b8a53784db2c19967a9d (patch) | |
tree | e1a69fe73c3c7f5efd26db9f78b78fa6709c694d /tests | |
parent | 1c909c930c7b54db35440382b77e79f3e63d9186 (diff) |
build: implicitly include config.h
config.h is meant to be around in all files, as it contains stuff like
_GNU_SOURCE, NDEBUG and HAVE_*.
Make these definitions available without needing to #include config.h
every single time.
Signed-off-by: Ran Benita <ran234@gmail.com>
Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_console.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/test_console.c b/tests/test_console.c index 723d678..f10a0c6 100644 --- a/tests/test_console.c +++ b/tests/test_console.c @@ -39,8 +39,6 @@ * $ ls -la | ./test_console */ -#define _BSD_SOURCE - #include <errno.h> #include <inttypes.h> #include <locale.h> |