From f3bb344f4e93c127d4333de57786f8248377c29f Mon Sep 17 00:00:00 2001 From: ehofman Date: Fri, 14 Nov 2003 09:41:31 +0000 Subject: [PATCH] MSVC fix --- src/ATC/tower.cxx | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) 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 -- 2.39.5