aboutsummaryrefslogtreecommitdiff
path: root/control/shell.c
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2006-05-25 19:42:05 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2006-05-25 19:42:05 +0000
commit0c6fd4b32921b8da7ece5011cc4888a0a520dcd1 (patch)
tree3260ee74e005f156590a77938cb482ed49fc3277 /control/shell.c
parent7f502b606e94b9a399e33df8613fdf9fd64126c6 (diff)
ifdef'ed so it doesn't get compiled on Windows, since it doesn't compile anyway
svn path=/trunk/externals/ggee/; revision=5135
Diffstat (limited to 'control/shell.c')
-rwxr-xr-xcontrol/shell.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/control/shell.c b/control/shell.c
index 64cd6d8..79d89ca 100755
--- a/control/shell.c
+++ b/control/shell.c
@@ -1,10 +1,9 @@
/* (C) Guenter Geiger <geiger@epy.co.at> */
+/* this doesn't run on Windows (yet?) */
+#ifndef _WIN32
+
#include <m_pd.h>
-#ifdef _MSC_VER
-#pragma warning( disable : 4244 )
-#pragma warning( disable : 4305 )
-#endif
#include <unistd.h>
#include <stdlib.h>
@@ -310,3 +309,6 @@ void shell_setup(void)
}
+#endif /* _WIN32 */
+
+