MSVC fix from Frederic Bouvier
This commit is contained in:
parent
3be0e17e66
commit
81c9e14c7e
1 changed files with 6 additions and 1 deletions
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue