From: ehofman Date: Fri, 14 Nov 2003 09:41:31 +0000 (+0000) Subject: MSVC fix X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=f3bb344f4e93c127d4333de57786f8248377c29f;p=flightgear.git MSVC fix --- diff --git a/src/ATC/tower.cxx b/src/ATC/tower.cxx index 90be4c30f..a817d7ff0 100644 --- a/src/ATC/tower.cxx +++ b/src/ATC/tower.cxx @@ -18,7 +18,15 @@ // along with this program; if not, write to the Free Software // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -#include // bcopy() +#ifdef HAVE_CONFIG_H +# include +#endif + +#ifdef HAVE_STRINGS_H +# include // bcopy() +#else +# include // MSVC doesn't have strings.h +#endif #include
#include