1
0
Fork 0

MSVC fix from Frederic Bouvier

This commit is contained in:
daveluff 2003-03-24 11:06:00 +00:00
parent 3be0e17e66
commit 81c9e14c7e

View file

@ -26,7 +26,12 @@
# include <config.h>
#endif
#include <strings.h> // bcopy()
#ifdef HAVE_STRINGS_H
# include <strings.h> // bcopy()
#else
# include <string.h> // MSVC doesn't have strings.h
#endif
#include <simgear/debug/logstream.hxx>
#include <simgear/misc/sgstream.hxx>