1
0
Fork 0

MSVC compilation

This commit is contained in:
fredb 2007-01-11 22:06:33 +00:00
parent 9f49baa00d
commit eb1f19abf7

View file

@ -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>