Skip to content
Snippets Groups Projects
Commit e2b3b07c authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

fix msvc compile

parent 5c54c8e5
No related branches found
No related tags found
No related merge requests found
......@@ -149,8 +149,8 @@ typedef int int32;
#define max(a,b) ((a) > (b) ? (a) : (b))
#undef min
#define min(a,b) ((a) < (b) ? (a) : (b))
#undef abs
#define abs(a) ((a) >= 0 ? (a) : -(a))
//#undef abs
//#define abs(a) ((a) >= 0 ? (a) : -(a))
#endif
......@@ -126,7 +126,7 @@
*==============*/
#include <assert.h>
#include <sys/param.h>
//#include <sys/param.h>
#include "all.h"
#include "mtypes.h"
#include "bitio.h"
......
......@@ -124,7 +124,7 @@
#include <errno.h>
#include <ctype.h>
#include <string.h>
#include <unistd.h>
//#include <unistd.h>
#include "mtypes.h"
#include "frames.h"
#include "prototypes.h"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment