Fix compilation with gcc 4.7
Add missing headers From Andrea Musuruane, #3507136
This commit is contained in:
parent
855a6db00f
commit
a931324050
|
@ -37,6 +37,8 @@ THE SOFTWARE.
|
||||||
|
|
||||||
#ifdef _MSC_VER
|
#ifdef _MSC_VER
|
||||||
#include <io.h>
|
#include <io.h>
|
||||||
|
#else
|
||||||
|
#include <unistd.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
class EMUFILE {
|
class EMUFILE {
|
||||||
|
|
|
@ -33,6 +33,10 @@
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
|
#ifndef _MSC_VER
|
||||||
|
#include <stdint.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "bits.h"
|
#include "bits.h"
|
||||||
#include "common.h"
|
#include "common.h"
|
||||||
#include "matrix.h"
|
#include "matrix.h"
|
||||||
|
|
Loading…
Reference in New Issue