diff options
author | Daniel Heckenberg <dheck@users.sourceforge.net> | 2003-03-09 11:10:53 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@iem.at> | 2015-10-14 13:35:36 +0200 |
commit | 0075489e96722418303a33f8647e50c6c76a5d46 (patch) | |
tree | 44505ac6bcb1156e1f74d6118917e5ee77bab4ab /svf~ | |
parent | f165693257282af828dee26de69b1d38fe0221c5 (diff) |
Minor changes for compilation using Visual C++ 6.0 (SP3) under Windows
ncluding:
- no array declaration with variable size
- fixed signed/unsigned comparison warnings
svn path=/trunk/externals/svf~/; revision=460
Diffstat (limited to 'svf~')
-rw-r--r-- | svf~/svf~.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/svf~/svf~.c b/svf~/svf~.c index 5958641..0749903 100644 --- a/svf~/svf~.c +++ b/svf~/svf~.c @@ -8,6 +8,8 @@ #include "m_pd.h"
#ifdef NT
+#define inline __inline
+#define M_PI 3.14159265358979323846
#pragma warning( disable : 4244 )
#pragma warning( disable : 4305 )
#endif
|