aboutsummaryrefslogtreecommitdiff
path: root/externals/build/win/m_pd.h
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2005-11-15 02:42:34 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2005-11-15 02:42:34 +0000
commit440e3d9c5d549f55c74fe4242d7217c95886ec97 (patch)
tree6e2919a3b93ca7f61c7f78056cf73d04d986533c /externals/build/win/m_pd.h
parent699bd1f1bb443d3043193d5649ffb1279d9fe0b8 (diff)
got basically everything building with MinGW, now got to get things linking dynamically instead of statically
svn path=/trunk/; revision=3907
Diffstat (limited to 'externals/build/win/m_pd.h')
-rw-r--r--externals/build/win/m_pd.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/externals/build/win/m_pd.h b/externals/build/win/m_pd.h
deleted file mode 100644
index e31b8ad7..00000000
--- a/externals/build/win/m_pd.h
+++ /dev/null
@@ -1,13 +0,0 @@
-/* windows compatibility stuff - cr 2004 */
-
-#include "../../../src/m_pd.h"
-
-#define setenv(a,b,c) _putenv(a)
-#define drand48() ((double)rand()/RAND_MAX)
-#define srand48(n) srand((n));
-#define expm1(e) exp(e)-1
-#define bzero(p,n) memset(p,0,n)
-#define PROT_READ 1
-#define MAP_PRIVATE 2
-#define O_NONBLOCK 1
-#define O_NDELAY O_NONBLOCK