Fix compilation with gcc 4.7

Add missing headers

From Andrea Musuruane, #3507136
This commit is contained in:
riccardom 2012-03-18 10:08:21 +00:00
parent 855a6db00f
commit a931324050
2 changed files with 6 additions and 0 deletions

View File

@ -37,6 +37,8 @@ THE SOFTWARE.
#ifdef _MSC_VER
#include <io.h>
#else
#include <unistd.h>
#endif
class EMUFILE {

View File

@ -33,6 +33,10 @@
#include <math.h>
#include <string.h>
#ifndef _MSC_VER
#include <stdint.h>
#endif
#include "bits.h"
#include "common.h"
#include "matrix.h"