Fix compilation (on Cygwin) after commit f63dc86f, by adding the necessary includes.

No idea why this problem has not shown up on other platforms; the includes are by no means Cygwin-specific.
This commit is contained in:
Lauri Nurmi 2014-09-24 22:35:48 +03:00
parent 1729ea6f0f
commit 17d6903d00
1 changed files with 3 additions and 0 deletions

View File

@ -95,6 +95,9 @@ void CheckOther::checkZeroDivision()
#include "cppcheckexecutor.h"
#include <cstdio>
#include <cstdlib>
#ifdef _WIN32
#include <windows.h>
static char exename[1024] = {0};