aboutsummaryrefslogtreecommitdiff
path: root/control
diff options
context:
space:
mode:
Diffstat (limited to 'control')
-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 */
+
+