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