MSVC fix
This commit is contained in:
parent
163e0f84d6
commit
f3bb344f4e
1 changed files with 9 additions and 1 deletions
|
@ -18,7 +18,15 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
# include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_STRINGS_H
|
||||
# include <strings.h> // bcopy()
|
||||
#else
|
||||
# include <string.h> // MSVC doesn't have strings.h
|
||||
#endif
|
||||
|
||||
#include <Main/globals.hxx>
|
||||
#include <Airports/runways.hxx>
|
||||
|
|
Loading…
Reference in a new issue