From: ehofman Date: Wed, 28 Sep 2005 13:55:54 +0000 (+0000) Subject: Use our own (crossplatform) stdint implementation. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=048b7df3f7390b8f545a540f8df3e1e1ae62d967;p=flightgear.git Use our own (crossplatform) stdint implementation. --- diff --git a/utils/GPSsmooth/MIDG-II.hxx b/utils/GPSsmooth/MIDG-II.hxx index cfa5daa55..e35ffa96a 100644 --- a/utils/GPSsmooth/MIDG-II.hxx +++ b/utils/GPSsmooth/MIDG-II.hxx @@ -12,17 +12,7 @@ #include #include -#ifdef HAVE_STDINT_H -# include -#elif defined( _MSC_VER ) || defined(__MINGW32__) || defined(sun) -typedef signed short int16_t; -typedef signed int int32_t; -typedef unsigned short uint16_t; -typedef unsigned int uint32_t; -#else -# error "Port me! Platforms that don't have need to define int8_t, et. al." -#endif - +#include #include SG_USING_STD(cout);