Skip to content
Snippets Groups Projects
Commit 9d6c79cb authored by Roger Dingledine's avatar Roger Dingledine
Browse files

fix compile on windows

parent 255245a2
No related branches found
No related tags found
No related merge requests found
......@@ -14,6 +14,10 @@
#include "or.h"
#include "crypto.h"
#ifndef MIN
#define MIN(a,b) ((a)<(b)?(a):(b))
#endif
/*
* This madness is needed because if we simply #undef log
* before including or.h or log.h, we get linker collisions
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment