Fri, 12 Oct 2012 10:54:55 +0200
made the code work with VC++ compiler (use make CONF=windows)
54 | 1 | /* |
2 | * | |
3 | */ | |
4 | ||
5 | #ifndef LOGGING_TESTS_H | |
6 | #define LOGGING_TESTS_H | |
7 | ||
8 | #include "ucx/test.h" | |
9 | #include "ucx/logging.h" | |
10 | ||
11 | #ifdef __cplusplus | |
12 | extern "C" { | |
13 | #endif | |
14 | ||
59
c80c910fe191
added semicolons to UCX_TEST_DECLARE calls
Mike Becker <universe@uap-core.de>
parents:
54
diff
changeset
|
15 | UCX_TEST_DECLARE(test_ucx_logger_log); |
54 | 16 | |
17 | #ifdef __cplusplus | |
18 | } | |
19 | #endif | |
20 | ||
21 | #endif /* LOGGING_TESTS_H */ | |
22 |