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>
|
||||
#endif
|
||||
|
||||
#include <strings.h> // for bzero()
|
||||
#ifndef _MSC_VER
|
||||
# include <strings.h> // for bzero()
|
||||
#else
|
||||
# define bzero(a,b) memset(a,0,b)
|
||||
#endif
|
||||
#include <iostream>
|
||||
#include <string>
|
||||
|
||||
|
|
Loading…
Reference in a new issue