Fix erc32 sim build failure due to missing stdint.h. 2010-05-16 Joel Brobecker * sis.h: Remove #include . (uint64, int64): Redefine without using stdint.h. (UINT64_MAX): Define. Modified: trunk/gdb/gdb-head/sim/erc32/sis.h =================================================================== --- trunk/gdb/gdb-head/sim/erc32/sis.h 2010-05-17 01:21:31 UTC (rev 163986) +++ trunk/gdb/gdb-head/sim/erc32/sis.h 2010-05-17 01:41:06 UTC (rev 163987) @@ -23,7 +23,6 @@ #include "ansidecl.h" #include "gdb/callback.h" #include "gdb/remote-sim.h" -#include #include "end.h" @@ -53,9 +52,11 @@ typedef double float64; /* 64-bit float */ /* FIXME: what about host compilers that don't support 64-bit ints? */ -typedef uint64_t uint64; /* 64-bit unsigned int */ -typedef int64_t int64; /* 64-bit signed int */ +typedef unsigned long long uint64; /* 64-bit unsigned int */ +typedef long long int64; /* 64-bit signed int */ +#define UINT64_MAX 18446744073709551615ULL + struct pstate { float64 fd[16]; /* FPU registers */