diff options
author | Jeff Muizelaar <jmuizelaar@mozilla.com> | 2009-02-10 17:58:28 -0500 |
---|---|---|
committer | Jeff Muizelaar <jmuizelaar@mozilla.com> | 2009-02-10 17:58:28 -0500 |
commit | 70297f257d4dc0accb5183b806d43a033887acb7 (patch) | |
tree | 9d359e755a8708ca815b3b5cdeeb05db98ffa93e /test | |
parent | b9f0c4b25223830ce73f7e3adef85a0e97a31c0e (diff) |
[test] Add crtdbg.h include
crtdbg.h is required for _CrtSetReportMode() and _CrtSetReportFile().
Diffstat (limited to 'test')
-rw-r--r-- | test/cairo-test-runner.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/cairo-test-runner.c b/test/cairo-test-runner.c index e604d0d9..1d79c7e3 100644 --- a/test/cairo-test-runner.c +++ b/test/cairo-test-runner.c @@ -54,6 +54,10 @@ #include <sys/wait.h> #endif +#ifdef _MSC_VER +#include <crtdbg.h> +#endif + typedef struct _cairo_test_list { const cairo_test_t *test; struct _cairo_test_list *next; |