MSVC compilation
This commit is contained in:
parent
9f49baa00d
commit
eb1f19abf7
1 changed files with 5 additions and 1 deletions
|
@ -2,7 +2,11 @@
|
||||||
# include <config.h>
|
# include <config.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifndef _MSC_VER
|
||||||
# include <strings.h> // for bzero()
|
# include <strings.h> // for bzero()
|
||||||
|
#else
|
||||||
|
# define bzero(a,b) memset(a,0,b)
|
||||||
|
#endif
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue